mirror of
https://github.com/irmen/prog8.git
synced 2026-04-21 17:16:33 +00:00
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:
@@ -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
|
||||
}}
|
||||
|
||||
Reference in New Issue
Block a user