Retro Game & PC/매뉴얼 팁 작업

Apple2 - How can I find out the address and size of a BLOADed DOS 3.3 file?

smores 2023. 12. 10. 20:35

https://gswv.apple2.org.za/a2zine/faqs/Csa2DOSMM.html#018

 

Csa2 Apple II FAQs DOS MM

    DOS & ProDOS.  ......  001- What is a "DOS"?  002- What DOS's are available on Apple II computers?  003- Are there any faster better versions of DOS 3.3?  004- What commands are available in DOS 3.3?  005- How do I use DOS commands from the ke

gswv.apple2.org.za

 

 

 After you BLOAD a file, you can use the following command to find out the exact length of the file you just BLOADed:

PRINT PEEK(43616) + 256 * PEEK(43617)
 
Use another PEEK to find out where it was loaded:

PRINT PEEK(43634) + 256 * PEEK(43635)

The value displayed is the load address of the binary file.