Skip to content

Commit e4896d0

Browse files
committed
Update VIC Makefile
1 parent 2caca2c commit e4896d0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ d64: matrix.prg
2424
$(C1541) $(D64_IMAGE) -list
2525

2626
runvic: matrix-vic20.prg
27-
$(XVIC) -verbose $(XVIC_IMAGE)
27+
$(XVIC) -drive8ram2000 -memory 8k -verbose $(XVIC_IMAGE)
2828

2929
run: d64
3030
$(X64) -verbose $(D64_IMAGE)

src/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ AnimateZapperTail
2525
```
2626

2727
When porting to C64 he forgot to update the 'STA' statement to refer to the new location of the character
28-
set in the Commoder 64 port:
28+
set:
2929

3030
```asm
3131
; AnimateZapperTail

utils/AddCharsetVars.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import sys
22
import os
33

4-
o = open("src/charset.asm", 'r')
4+
o = open("src/vic20/charset.asm", 'r')
55
charmap = {l[60:63].strip().upper():l[65:].strip()
66
for l in o.readlines()
77
if "CHARACTER" in l and l[65:].strip() != ""}

0 commit comments

Comments
 (0)