mirror of
https://github.com/nathanriggs/AppleIIAsm-Collection.git
synced 2024-12-03 18:49:28 +00:00
f5c097e70f
- added error handling - no more massive library; just a subroutine per file. This is because Merlin doesn't like large files. - added a "minify" BASIC utility that gets rid of *most* comments in a source textfile. This dramatically reduces space used if you're not terribly interested in non-inline comments. - TFILL,THLIN,TVLIN and TPUT not directly access the video memory (page one), making for a much faster draw without interfering COUT. - some stylistic changes, primarily to TFILL - change required files to minified versions only. The whole files can be found on disk 2. - got a norovirus so pretty much couldn't do anything requiring sustained attention, so focused on small things here and not on my dayjob. Cool. - created a required.vars file that separates variables and settings from the other required files. Not minified. - This current bout of revision will probably be the last, once all initial 6 disks are revamped, that focuses on all subroutines/macros in a given library at a single push. After this round, commits will be done on a subroutine or related file basis.
120 lines
2.6 KiB
Plaintext
120 lines
2.6 KiB
Plaintext
*
|
|
*``````````````````````````````*
|
|
* TXTPUT : PUT CHAR AT X,Y POS *
|
|
* *
|
|
* SIMPLY PLOTS A CHARACTER AT *
|
|
* GIVEN X,Y DIRECTLY TO MEMORY *
|
|
*- -*
|
|
* CLOBBERS: *
|
|
* *
|
|
* FLAGS: ???----- REG: A-YM *
|
|
*- -*
|
|
* CYCLES: ??? *
|
|
* SIZE: *
|
|
*- -*
|
|
* USAGE: *
|
|
* LDA #10 ; XPOS *
|
|
* PHA *
|
|
* LDA #5 ; YPOS *
|
|
* PHA *
|
|
* LDA #AA ; FILL CHAR *
|
|
* PHA *
|
|
* JSR TXTPUT *
|
|
*- -*
|
|
* ENTRY *
|
|
* *
|
|
* TOP OF STACK *
|
|
* *
|
|
* LOW BYTE OF RETURN ADDRESS *
|
|
* HI BYTE OF RETURN ADDRESS *
|
|
* FILL CHARACTER *
|
|
* Y POSITION *
|
|
* X POSITION *
|
|
*- -*
|
|
* EXIT *
|
|
* *
|
|
* TOP OF STACK *
|
|
* *
|
|
* LOW BYTE OF RETURN ADDRESS *
|
|
* HI BYTE OF RETURN ADDRESS *
|
|
* *
|
|
* A = TRASH *
|
|
* X = TRASH *
|
|
* Y = TRASH *
|
|
*,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,*
|
|
*
|
|
TXTPUT
|
|
*
|
|
** GET RETURN ADDRESS
|
|
*
|
|
PLA
|
|
STA RETADR
|
|
PLA
|
|
STA RETADR+1
|
|
*
|
|
** GET VARIABLES
|
|
*
|
|
PLA
|
|
STA :F ; FILL
|
|
PLA
|
|
STA :Y
|
|
PLA
|
|
STA :X
|
|
*
|
|
********************************
|
|
*
|
|
** ERROR CONTROL
|
|
*
|
|
********************************
|
|
*
|
|
LDA ERRCTRL
|
|
CMP #1
|
|
BEQ :CHKERR
|
|
JMP :ERREND
|
|
:CHKERR
|
|
LDA :X
|
|
CMP #40 ; MAX COL + 1
|
|
BCS :XOVF
|
|
LDA :Y
|
|
CMP #24
|
|
BCS :YOVF
|
|
JMP :ERREND
|
|
:XOVF
|
|
_ERR :E_SID;:E_XOF;:E_DMP1;:F;#3
|
|
JMP :ERREND
|
|
:YOVF
|
|
_ERR :E_SID;:E_YOF;:E_DMP1;:F;#3
|
|
*
|
|
********************************
|
|
*
|
|
:ERREND
|
|
*
|
|
********************************
|
|
*
|
|
*
|
|
LDA :Y
|
|
LDY :X
|
|
JSR $F847
|
|
LDA :F
|
|
STA ($26),Y
|
|
*
|
|
**
|
|
*
|
|
LDA RETADR+1
|
|
PHA
|
|
LDA RETADR
|
|
PHA
|
|
RTS
|
|
*
|
|
** DATA
|
|
*
|
|
:F DS 1
|
|
:Y DS 1
|
|
:X DS 1
|
|
*
|
|
:E_SID ASC "TXTPUT (TPUT MACRO)",00
|
|
:E_DMP1 ASC "DUMPING F(1) Y(1) X(1):",00
|
|
:E_XOF ASC "X OVERFLOW. X <> MIN/MAX",00
|
|
:E_YOF ASC "Y OVERFLOW. Y <> MIN/MAX",00
|
|
*
|