blob: f37855a67c858fede3fe7abecf1986112686cd50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
diff --git a/machine/machine.c b/machine/machine.c
index f0054cc..8ca69ee 100644
--- a/machine/machine.c
+++ b/machine/machine.c
@@ -142,14 +142,14 @@ char debug_line[256];
}
else {
printf("FILE NOT FOUND.\n");
- disk_load_to("boot.bin",&memory[0x200]);
+ disk_load_to("/usr/share/minicube64/boot.bin",&memory[0x200]);
}
}
}
else
{
printf("NO CART LOADED.\n");
- disk_load_to("boot.bin",&memory[0x200]);
+ disk_load_to("/usr/share/minicube64/boot.bin",&memory[0x200]);
}
reset6502();
pc = 0x200;
|