From 679965410a40fc71f65cee0dc5019263a627d833 Mon Sep 17 00:00:00 2001 From: Irmen de Jong Date: Sat, 22 Aug 2020 17:13:23 +0200 Subject: [PATCH] todo --- docs/source/todo.rst | 1 + examples/test.p8 | 7 ------- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/docs/source/todo.rst b/docs/source/todo.rst index d2f9976b2..9f1800b25 100644 --- a/docs/source/todo.rst +++ b/docs/source/todo.rst @@ -4,6 +4,7 @@ TODO - optimize assignment codegeneration - get rid of all TODO's ;-) +- make it possible to use cpu opcodes such as 'nop' as variable names by prefixing all asm vars with something such as '_' - option to load the built-in library files from a directory instead of the embedded ones (for easier library development/debugging) - aliases for imported symbols for example perhaps '%alias print = c64scr.print' ? - investigate support for 8bitguy's Commander X16 platform https://www.commanderx16.com and https://github.com/commanderx16/x16-docs diff --git a/examples/test.p8 b/examples/test.p8 index 2b44b4958..79f914e21 100644 --- a/examples/test.p8 +++ b/examples/test.p8 @@ -5,15 +5,8 @@ main { - ; todo make it possible to use cpu opcodes as varnames such as 'nop' by prefixing all asm vars with something such as '_' - sub start() { - byte nop2 - nop2=4 - - ; nop2() ; better error - nop2() } }