Search results
Blocking RAM memory writes while debugging
Score: 169.98 %,
Type: Forum topic , Comments: 1 comment
Hi,
Is that possible to block writes to a specified RAM place while debugging in openMSX ? I mean, to temporary convert for instance 0x9000 to 0x9500 in a ROM inside the RAM memory?
Wouter told me: the only Wouter told me: the only thing i can think of is to install a watchpoint ...
Scanning memory changes in debugger
Score: 169.88 %,
Type: Forum topic , Comments: 2 comments
I would like to know if it is possible to set a breakpoint that is triggered when a write to a certain region of memory happens. Is that possible? If it is, how can I do that?
At least it is possible in At least it is possible in the console ...
openMSX trainer tutorial
Score: 169.92 %,
Type: Forum topic , Comments: 4 comments
https://www.youtube.com/watch?v=SZyghY0X21A
This is some very old stuff - it still works like this
Thanks Vampier. Thanks ...
Copying data from File to Vram
Score: 169.86 %,
Type: Forum topic , Comments: 8 comments
ldirvm: equ 0x005C
CALSLT: equ 0x001C
EXPTBL: equ 0xFCC1
org 0x100
START:
ld a,2 ... NAME OF THE FILE (WITHOUT EXTENSION)
; AND PUTS in the FCB.
LD HL,082H
LD DE,FCB+1
START0:
LD A,(HL)
CP 0DH
JR Z,START1
LD (DE),A
INC HL
INC DE
JR START0
; Open file ...
