From c630c4ef6eeea9f95bec1c586a50f9a39a207a66 Mon Sep 17 00:00:00 2001 From: Russell-S-Harper Date: Tue, 7 Aug 2018 20:28:59 -0400 Subject: [PATCH] Formatting. --- common/common.asm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common/common.asm b/common/common.asm index c8bbed9..45219b9 100644 --- a/common/common.asm +++ b/common/common.asm @@ -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 .)