X-Git-Url: http://cloudbase.mooo.com/gitweb/avrcpm.git/blobdiff_plain/9c15f36650204cc8a2ada229ecbb50b592dc6aaa..29ce189c438e15067a26aebcb12227a9c172a384:/avrcpm/avr/dram-4bit.inc diff --git a/avrcpm/avr/dram-4bit.inc b/avrcpm/avr/dram-4bit.inc index 2e08ae8..2deba3d 100644 --- a/avrcpm/avr/dram-4bit.inc +++ b/avrcpm/avr/dram-4bit.inc @@ -85,7 +85,7 @@ ; xh = memaddrh, xl = memaddrl .macro mem_read_d - rcall dram_read + lcall dram_read mov @0,temp .endm @@ -95,7 +95,7 @@ .macro mem_read_ds movw xl,@1l - rcall dram_read + lcall dram_read mov @0,temp .endm @@ -104,7 +104,7 @@ ; xh = memaddrh, xl = memaddrl, temp = srcreg .macro mem_write - rcall dram_write + lcall dram_write .endm ;---------------------------------------------- @@ -124,7 +124,7 @@ .macro mem_write_s mov temp,@0 - rcall dram_write + lcall dram_write .endm ;---------------------------------------------- @@ -134,7 +134,7 @@ .macro mem_write_ds movw x,@0l mov temp,@1 - rcall dram_write + lcall dram_write .endm