also optimize BRA+RTS into just BRA

release 12.0
This commit is contained in:
Irmen de Jong
2025-11-23 02:20:12 +01:00
parent d19a3af9ed
commit df1a2a1611
5 changed files with 12 additions and 4 deletions
+1 -1
View File
@@ -8,4 +8,4 @@ Look in the Makefile to see how to build or run the various programs.
and example program, you can find those efforts here on GitHub: https://github.com/adiee5/prog8-nes-target
*gillham* has been working on a few other compilation targets, such as VIC-20 (various editions), Foenix, and CX16OS.
you can find them here on GitHub: https://github.com/gillham/prog8targets
These will be much more complete than the examples here. You can find them on GitHub: https://github.com/gillham/prog8targets
+3
View File
@@ -8,6 +8,7 @@
; PRG size by a lot because they embed a large multiplication lookup table.
%import textio
%import math
%import syslib
@@ -38,6 +39,8 @@ main {
repeat {
clear_particles()
update_particles()
txt.home()
txt.print_uw(active_particles)
sys.waitvsync()
sys.waitvsync()
}