Mark off constants as done in TODO.org

This commit is contained in:
2023-11-09 08:52:07 +00:00
parent 1935277716
commit f896ad2cb7

View File

@@ -39,7 +39,7 @@ Something to consider is /static/ and /dynamic/ "linking" i.e.:
Like in FASM or NASM where we can give certain helpful instructions to Like in FASM or NASM where we can give certain helpful instructions to
the assembler. I'd use the ~%~ symbol to designate preprocessor the assembler. I'd use the ~%~ symbol to designate preprocessor
directives. directives.
** TODO Constants ** DONE Constants
Essentially a directive which assigns some literal to a symbol as a Essentially a directive which assigns some literal to a symbol as a
constant. Something like constant. Something like
#+begin_src asm #+begin_src asm
@@ -68,8 +68,8 @@ constant potentially
print.word print.word
%end %end
#+end_src #+end_src
which when referred to ~$print-1~ would just insert the bytecode given which when referred to (by ~$print-1~) would insert the bytecode given
in sequence. inline.
* Completed * Completed
** DONE Write a label/jump system :ASM: ** DONE Write a label/jump system :ASM:
Essentially a user should be able to write arbitrary labels (maybe Essentially a user should be able to write arbitrary labels (maybe