mirror of
https://github.com/fadden/6502bench.git
synced 2024-11-29 10:50:28 +00:00
Add a few Apple II symbols
Added monitor BASL/BASH, and DOS $03ea (for which I can't find an official name). Fixed a typo.
This commit is contained in:
parent
da5833caef
commit
5deba9a898
@ -11,6 +11,7 @@ DOS_FM @ $03d6 ;DOS file manager entry point
|
||||
DOS_RWTS @ $03d9 ;RWTS entry point
|
||||
DOS_LOCFPL @ $03dc ;loads Y/A with address of FM param list
|
||||
DOS_LOCRPL @ $03e3 ;loads Y/A with address of RWTS IOB
|
||||
DOS_CHARIO @ $03ea ;jumps to routine that connects DOS KSW/CSW
|
||||
|
||||
; I/O scratchpad RAM addresses
|
||||
; See Apple II Reference Manual table 26 (page 83)
|
||||
|
@ -20,6 +20,10 @@ MON_CH @ erase
|
||||
MON_CV @ erase
|
||||
MON_GBASL @ erase
|
||||
MON_GBASH @ erase
|
||||
MON_BASL @ erase
|
||||
MON_BASH @ erase
|
||||
;MON_BAS2L @ erase
|
||||
;MON_BAS2H @ erase
|
||||
MON_H2 @ erase
|
||||
MON_V2 @ erase
|
||||
MON_COLOR @ erase
|
||||
|
@ -10,11 +10,15 @@
|
||||
MON_WNDLEFT @ $20 ;left column of scroll window
|
||||
MON_WNDWDTH @ $21 ;width of scroll window
|
||||
MON_WNDTOP @ $22 ;top of scroll window
|
||||
MON_WNDBTM @ $23 ;bottom of scsroll window
|
||||
MON_WNDBTM @ $23 ;bottom of scroll window
|
||||
MON_CH @ $24 ;cursor horizontal displacement
|
||||
MON_CV @ $25 ;cursor vertical displacement
|
||||
MON_GBASL @ $26 ;base address for lo-res drawing (lo)
|
||||
MON_GBASH @ $27 ;base address for lo-res drawing (hi)
|
||||
MON_BASL @ $28 ;base address for text output (lo)
|
||||
MON_BASH @ $29 ;base address for text output (hi)
|
||||
;MON_BAS2L @ $2A ;used when scrolling text
|
||||
;MON_BAS2H @ $2B ;used when scrolling text
|
||||
MON_H2 @ $2C ;right end of horizontal line drawn by HLINE
|
||||
MON_V2 @ $2D ;bottom of vertical line drawn by VLINE
|
||||
MON_COLOR @ $30 ;lo-res graphics color
|
||||
|
Loading…
Reference in New Issue
Block a user