-
Notifications
You must be signed in to change notification settings - Fork 8
Assembly Language FileIO Module
Curtis F Kaylor edited this page Nov 27, 2023
·
3 revisions
This module contains high level file handling routines.
Load binary file into main memory.
Input | BC: Maximum Length |
DE: Start Address | |
HL: String descriptor address | |
Output | A: result code |
BC: number of bytes actually read | |
DE: next destination address | |
Flags Set | S if I/O error |
Clobbered | HL |
Load binary file into paged memory.
Input | A: page |
BC: maximum length | |
DE: start address | |
HL: string descriptor address | |
Output | A: result code |
BC: number of bytes actually read | |
DE: next destination address | |
H: destination page | |
Flags Set | Z if llegal page |
C if page overflow | |
S if I/O error | |
Clobbered | AF', H |
To Search for pages in the wiki, press Pages above and type a search term in the "Find a page..." box. Results will update beneath automatically.
- Aquarius+ User Guide
- Quick Start
- Hardware
- Software
-
Other Development Resources