First cut at an 8086 assembler vocabulary
This commit is contained in:
parent
791e4644aa
commit
102751b342
4 changed files with 331 additions and 3 deletions
|
|
@ -563,7 +563,7 @@ void f_immediate() {
|
|||
void f_compileword();
|
||||
|
||||
void f_semicolon() {
|
||||
PUSHS("ret");
|
||||
PUSHS("return");
|
||||
f_compileword();
|
||||
f_compileoff();
|
||||
}
|
||||
|
|
@ -872,7 +872,7 @@ void f_init() {
|
|||
CDEF("BZ_", f_bz_);
|
||||
CDEF("BNZ_", f_bnz_);
|
||||
CDEF("INLINEDATA_", f_inline_data_);
|
||||
CDEF("ret", f_ret);
|
||||
CDEF("return", f_ret);
|
||||
CDEF(".", f_dot);
|
||||
CDEF("u.", f_udot);
|
||||
CDEF("type", f_puts);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue