wipes: more acme conversion

This commit is contained in:
Vince Weaver
2024-10-30 20:25:16 -04:00
parent b3aecf8e4a
commit 33b14ac070
3 changed files with 6 additions and 4 deletions

View File

@@ -9,7 +9,7 @@
.include "fx.hgr.precomputed.1bit.s"
; FX_INITONCE_1BIT FXCodeFile, CoordinatesFile, Start
FX_INITONCE_1BIT FXCodeFile, CoordinatesFile, Start
Start:
; jmp FXCode

View File

@@ -12,8 +12,8 @@
; !source "src/fx/macros.shr.a"
; !source "src/fx/macros.copybit.a"
; !source "src/fx/macros.misc.a"
.endif
_FX_MACROS_=*
.endif
;_FX_MACROS_=*
;}

6
graphics/hgr/wipes/main_macros.s Executable file → Normal file
View File

@@ -74,9 +74,11 @@ end_pstring:
; load the address of .ptr into A (low) and Y (high)
;!macro LDADDR .ptr {
; lda #<.ptr
; ldy #>.ptr
.macro LDADDR ptr
lda #<ptr
ldy #>ptr
;}
.endmacro
; load a 16-bit value into A (low) and Y (high)
;!macro LD16 .ptr {