labels aren't supposed to have colons
This commit is contained in:
parent
78835a06e4
commit
e39e53f96e
4 changed files with 38 additions and 40 deletions
|
@ -383,22 +383,7 @@ namespace lib94 {
|
||||||
for (char &ch : line)
|
for (char &ch : line)
|
||||||
ch = tolower(ch);
|
ch = tolower(ch);
|
||||||
|
|
||||||
while (true) {
|
return_after_label:
|
||||||
size_t colon = line.find(':');
|
|
||||||
if (colon == std::string::npos)
|
|
||||||
break;
|
|
||||||
|
|
||||||
std::string label = trim_spaces(line.substr(0, colon));
|
|
||||||
line = line.substr(colon + 1);
|
|
||||||
|
|
||||||
if (!valid_label(label))
|
|
||||||
return std::string("bad label on line ") + std::to_string(on_line);
|
|
||||||
if (label_offsets.contains(label) || macro_definitions.contains(label))
|
|
||||||
return std::string("duplicate label on line ") + std::to_string(on_line);
|
|
||||||
|
|
||||||
label_offsets[label] = instructions.size();
|
|
||||||
}
|
|
||||||
|
|
||||||
line = trim_spaces(line);
|
line = trim_spaces(line);
|
||||||
if (line == "")
|
if (line == "")
|
||||||
continue;
|
continue;
|
||||||
|
@ -432,8 +417,12 @@ namespace lib94 {
|
||||||
future_instruction instr;
|
future_instruction instr;
|
||||||
instr.source_line = on_line;
|
instr.source_line = on_line;
|
||||||
|
|
||||||
std::string opcode_str = line.substr(0, 3);
|
size_t sep = line.find_first_of(" .");
|
||||||
line = trim_spaces(line.substr(3));
|
if (sep == std::string::npos)
|
||||||
|
sep = line.size();
|
||||||
|
|
||||||
|
std::string opcode_str = trim_spaces(line.substr(0, sep));
|
||||||
|
line = trim_spaces(line.substr(sep));
|
||||||
|
|
||||||
if (opcode_str == "org" || opcode_str == "end") {
|
if (opcode_str == "org" || opcode_str == "end") {
|
||||||
if (org.has_value())
|
if (org.has_value())
|
||||||
|
@ -451,8 +440,17 @@ namespace lib94 {
|
||||||
|
|
||||||
auto opcode_it = opcode_names.find(opcode_str);
|
auto opcode_it = opcode_names.find(opcode_str);
|
||||||
|
|
||||||
if (opcode_it == opcode_names.end())
|
if (opcode_it == opcode_names.end()) {
|
||||||
return std::string("unknown opcode on line ") + std::to_string(on_line);
|
if (!valid_label(opcode_str))
|
||||||
|
return std::string("bad label or unknown opcode on line ") + std::to_string(on_line);
|
||||||
|
|
||||||
|
if (label_offsets.contains(opcode_str) || macro_definitions.contains(opcode_str))
|
||||||
|
return std::string("duplicate label on line ") + std::to_string(on_line);
|
||||||
|
|
||||||
|
label_offsets[opcode_str] = (number_t)instructions.size();
|
||||||
|
|
||||||
|
goto return_after_label;
|
||||||
|
}
|
||||||
|
|
||||||
instr.op = opcode_it->second;
|
instr.op = opcode_it->second;
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
;author Benji Dial
|
;author Benji Dial
|
||||||
;name Big Nothing
|
;name Big Nothing
|
||||||
|
|
||||||
start:
|
start
|
||||||
nop
|
nop
|
||||||
nop
|
nop
|
||||||
nop
|
nop
|
||||||
|
|
|
@ -3,27 +3,27 @@
|
||||||
|
|
||||||
;not a particularly good warrior, but is sufficient to test a few things
|
;not a particularly good warrior, but is sufficient to test a few things
|
||||||
|
|
||||||
start:
|
start
|
||||||
mov 0, 2908
|
mov 0, 2908
|
||||||
nop }start, >start
|
nop }start, >start
|
||||||
jmp 2
|
jmp 2
|
||||||
|
|
||||||
dat
|
dat
|
||||||
|
|
||||||
seq.a #end - start, start
|
seq.a #the_end - start, start
|
||||||
jmp start
|
jmp start
|
||||||
jmp 2
|
jmp 2
|
||||||
|
|
||||||
dat
|
dat
|
||||||
|
|
||||||
sub.ab #end - start, start
|
sub.ab #the_end - start, start
|
||||||
spl @start
|
spl @start
|
||||||
jmp 2, <start
|
jmp 2, <start
|
||||||
|
|
||||||
dat
|
dat
|
||||||
|
|
||||||
dwarf:
|
dwarf
|
||||||
mov end, end + 4
|
mov the_end, the_end + 4
|
||||||
add.ab #4, dwarf
|
add.ab #4, dwarf
|
||||||
jmp 2
|
jmp 2
|
||||||
|
|
||||||
|
@ -35,8 +35,8 @@ dwarf:
|
||||||
|
|
||||||
dat
|
dat
|
||||||
|
|
||||||
core_clear:
|
core_clear
|
||||||
mov end, end + 1
|
mov the_end, the_end + 1
|
||||||
add.ab #1, -1
|
add.ab #1, -1
|
||||||
jmp 2
|
jmp 2
|
||||||
|
|
||||||
|
@ -48,8 +48,8 @@ core_clear:
|
||||||
|
|
||||||
dat
|
dat
|
||||||
|
|
||||||
mov.ab #end + 1, core_clear
|
mov.ab #the_end + 1, core_clear
|
||||||
jmp core_clear
|
jmp core_clear
|
||||||
dat
|
dat
|
||||||
|
|
||||||
end:
|
the_end
|
||||||
|
|
|
@ -3,13 +3,13 @@
|
||||||
|
|
||||||
period equ 10
|
period equ 10
|
||||||
|
|
||||||
scan_init equ end - (end - scan) % period + period
|
scan_init equ the_end - (the_end - scan) % period + period
|
||||||
|
|
||||||
scan:
|
scan
|
||||||
seq.i -period, scan_init
|
seq.i -period, scan_init
|
||||||
jmp found
|
jmp found
|
||||||
|
|
||||||
found_ret:
|
found_ret
|
||||||
add.ab #period, scan
|
add.ab #period, scan
|
||||||
seq.ab scan, scan
|
seq.ab scan, scan
|
||||||
jmp scan
|
jmp scan
|
||||||
|
@ -17,26 +17,26 @@ found_ret:
|
||||||
add.f scan_add, scan
|
add.f scan_add, scan
|
||||||
jmn.a scan, scan
|
jmn.a scan, scan
|
||||||
|
|
||||||
clear:
|
clear
|
||||||
mov end, - 1
|
mov the_end, - 1
|
||||||
sub.ab #2, clear
|
sub.ab #2, clear
|
||||||
|
|
||||||
seq.ab #end - clear - (end - clear) % 2 + 3, clear
|
seq.ab #the_end - clear - (the_end - clear) % 2 + 3, clear
|
||||||
jmp clear
|
jmp clear
|
||||||
|
|
||||||
mov.ab #-1, clear
|
mov.ab #-1, clear
|
||||||
jmp clear
|
jmp clear
|
||||||
|
|
||||||
scan_add:
|
scan_add
|
||||||
dat 2, period + scan_init + 2
|
dat 2, period + scan_init + 2
|
||||||
|
|
||||||
found:
|
found
|
||||||
mov bomb, >scan
|
mov bomb, >scan
|
||||||
mov bomb + 1, @scan
|
mov bomb + 1, @scan
|
||||||
jmp found_ret, <scan
|
jmp found_ret, <scan
|
||||||
|
|
||||||
bomb:
|
bomb
|
||||||
spl 1
|
spl 1
|
||||||
jmp bomb
|
jmp bomb
|
||||||
|
|
||||||
end:
|
the_end
|
||||||
|
|
Loading…
Add table
Reference in a new issue