Browse Source

Ch4 update

Nikola Kotur 5 months ago
parent
commit
115bee9378
3 changed files with 15 additions and 1 deletions
  1. 1 1
      .gitignore
  2. 8 0
      ch4/s5bitvic.asm
  3. 6 0
      ch4/settc.asm

+ 1 - 1
.gitignore

@@ -1 +1 @@
-*~
+bin

+ 8 - 0
ch4/s5bitvic.asm

@@ -0,0 +1,8 @@
+BasicUpstart2(start)
+
+* = $4000 "Main Program"
+start:  lda #$20
+        ora $D011
+        sta $D011
+        rts
+

+ 6 - 0
ch4/settc.asm

@@ -0,0 +1,6 @@
+BasicUpstart2(start)
+
+* = $4000 "Main Program"
+start:  sec
+        rts
+