Apple II Merlin MON mode

3 posts / 0 new
Last post
Offline
Last seen: 8 hours 26 min ago
Joined: Nov 19 2023 - 15:28
Posts: 122
Apple II Merlin MON mode

Hello, 

for my DISK II project, I need to write some ASM code on Apple II to simulate various disk protection mecanism (as per TOME  OF Protection), 

Running  a VIRTUA II emulator on my mac with an Apple //e image and Merlin 2.58, I started entering the BELL demo program:

 

* DEMO

     ORG $300

BELL EQU $FBDD

START JSR BELL

END RTS

 

I can compile with ASM, save the source and the object file, but I am struggling with the MON mode in the editor

I should see the compiled code when I do 

* 300L

and it is not the case, 

I should as well be able to run it with 300G (but the code seems not to be there)

I have stricly followed the documentation but I must be missing something ? 

Thanks for your help

VIncent 

 

 

Offline
Last seen: 4 hours 20 min ago
Joined: Mar 2 2024 - 12:19
Posts: 6
.

If you want to test your code from within Merlin, ORG $300 won't work.

I don't remember the lowest address off the top of my head, but I usually use $2000 or $4000 when I'm playing around with some small programs.

asm
get $2000
mon
2000L

Offline
Last seen: 8 hours 26 min ago
Joined: Nov 19 2023 - 15:28
Posts: 122
ah yes thanks it is working !

ah yes thanks it is working !

;)

 

Log in or register to post comments