Janne Hellsten
Janne Hellsten
HACK to grab screenshots for the README.md.
This is the start macro I've been using. It seems to work but doesn't give identical results to KA: ``` !filescope c64 !macro basic_start(addr) { * = $801 !byte $0c,...
they could be used as functions this way..?
``` lda #0 sta $d020 !macro foo(col) { lda #col sta $d020 } +foo(3) ``` If say "lda #col" above has an error, the error is shown for that LDA...
also fix word splitting in the language definition.
When the program is running and you set a breakpoint, VICE remotemon pauses the app (at whereever it happened to be running when break was set). Once you continue with...
the patched kernal really speeds up boot time. see http://codebase64.org/doku.php?id=base:using_a_running_vice_session_for_development would always use this but probably not ok to ship a patched kernal with c64jasm.
plugins now get called once per pass. for any type of larger input file processing, this might be pretty bad for perf. could just memoize the plugin results based on...