breaking change: renamed R0R1_32 etc combined register parameters to just R0R1, R2R3, etc etc (_32 suffix is removed to make it more consistent with the other existing register names)

This commit is contained in:
Irmen de Jong
2026-01-07 21:54:34 +01:00
parent c6cd39b4ab
commit 78d6d2d59a
31 changed files with 188 additions and 187 deletions
@@ -685,7 +685,7 @@ main {
test(0)
}
asmsub test(long arg @R0R1_32) {
asmsub test(long arg @R0R1) {
%asm {{
rts
}}
@@ -703,7 +703,7 @@ main {
extcommand_print_ulhex($abcdef99, false)
}
asmsub extcommand_print_ulhex(long value @R0R1_32, bool prefix @A) clobbers(A,X,Y) {
asmsub extcommand_print_ulhex(long value @R0R1, bool prefix @A) clobbers(A,X,Y) {
%asm {{
rts
}}