Merge pull request #8 from Russell-S-Harper/development

Formatting.
This commit is contained in:
Russell-S-Harper 2018-08-07 20:30:29 -04:00 committed by GitHub
commit 9aa6e3b51d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -65,11 +65,11 @@ _5 TXA ; get operand
RTS ; "return" to routine
.)
_INI .( ; initialize common
_INI .( ; initialize common
LDA #0 ; initialize RSI
STA _RSI
; copy system functions (TODO)
; load program (TODO)
LDA #0 ; clear RSI
STA _RSI
JMP (_PC) ; go to last loaded block
.)