home *** CD-ROM | disk | FTP | other *** search
- ;begin.asm
- ;===================================================================
- ; begin loop command for CS-DOS batch files 12feb88 - CS
- ;===================================================================
-
- int0e = $170e
- lpsave = $1bc5
- int22 = $1722 ; CLC=get, SEC=get 1750 EXEC address
-
- star = $0b00
- .wor star
- * = star
-
- jmp begin
- dw Date
-
- begin clc
- jsr int22
- sta lpsave
- stx lpsave+1
- sty lpsave+2
- lda #0
- jmp int0e
-
- .end
-