]> cloudbase.mooo.com Git - avrcpm.git/blobdiff - avrcpm/avr/8080int-jmp.asm
* Start of dynamic disk size code.
[avrcpm.git] / avrcpm / avr / 8080int-jmp.asm
index 742a4ed964648c05a022bfc058ac334895779f41..1d7d1f3f220d739916c6b67fcb4c15d163082c78 100644 (file)
@@ -651,7 +651,7 @@ do_store_am:
 
 do_op_inv:
        sbiw    z_pcl,1
-       rcall printregs
+       lcall printregs
        printstring "Invalid opcode! "
 
 haltinv:
@@ -680,7 +680,7 @@ do_op_outa: ; out (opl),a
 .endif
        mov temp,z_a
        mov temp2,opl
-       rcall portWrite
+       lcall portWrite
        ret
 
 ;----------------------------------------------------------------
@@ -699,7 +699,7 @@ do_op_in:   ; in a,(opl)
 .endif
 
        mov temp2,opl
-       rcall portRead
+       lcall portRead
        mov opl,temp
 
 .if PORT_DEBUG