First cut at an 8086 assembler vocabulary

This commit is contained in:
Jeremy Penner 2023-09-01 19:10:52 -04:00
parent 791e4644aa
commit 102751b342
4 changed files with 331 additions and 3 deletions

View file

@ -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);