This commit is contained in:
Irmen de Jong 2020-08-22 17:13:23 +02:00
parent c6e13ae2a3
commit 679965410a
2 changed files with 1 additions and 7 deletions

View File

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

View File

@ -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()
}
}