Complete Commodore 64 emulation on a Teensy 3.6?
Apparently. Check the link.
https://www.pjrc.com/commodore-c64-emulator/
Thursday, 29 March 2018
The C64 Mini - A half size retro gaming system for Commodore fans
Originally shared by Christopher Gaul
The C64 Mini - A half size retro gaming system for Commodore fans
Review by The 8-bit guy here:
https://youtu.be/GXXCj5kqPcM
https://thec64.com/
The C64 Mini - A half size retro gaming system for Commodore fans
Review by The 8-bit guy here:
https://youtu.be/GXXCj5kqPcM
https://thec64.com/
Wednesday, 21 March 2018
how to make a C64 CP/M or DOS/65 disk without using the CP/M cartridge and utility from CP/M simply using BASIC v2.
how to make a C64 CP/M or DOS/65 disk without using the CP/M cartridge and utility from CP/M simply using BASIC v2. may be usefull for DOS/65 user since DOS/65 doesn't come with a format utility.
code:
0 open 15,8,15
1 print "initializing..."
2 print#15,"i:"
3 print "cbm formating..."
4 print#15,"n:dos/65,65"
5 close 15
10 open 15,8,15:open 5,8,5,"#"
11 for d = 0 to 255
12 print#5,chr$(229);
13 next d
14 print "writing cp/m or dos/65 dir..."
15 for b = 0 to 3
16 print#15,"u2:"5;0;3;b
17 next b
18 close 5:close 15
19 print "allocating blocks..."
20 open 15,8,15
21 for t=1 to 17:for b= 0 to 20
22 print#15,"b-a:"0;t;b
23 next b:next t
24 for t=19 to 24:for b= 0 to 18
25 print#15,"b-a:"0;t;b
26 next b:next t
27 for t=25 to 30:for b= 0 to 17
28 print#15,"b-a:"0;t;b
29 next b:next t
30 for t=31 to 35:for b= 0 to 16
31 print#15,"b-a:"0;t;b
32 next b:next t
33 close 15
code:
0 open 15,8,15
1 print "initializing..."
2 print#15,"i:"
3 print "cbm formating..."
4 print#15,"n:dos/65,65"
5 close 15
10 open 15,8,15:open 5,8,5,"#"
11 for d = 0 to 255
12 print#5,chr$(229);
13 next d
14 print "writing cp/m or dos/65 dir..."
15 for b = 0 to 3
16 print#15,"u2:"5;0;3;b
17 next b
18 close 5:close 15
19 print "allocating blocks..."
20 open 15,8,15
21 for t=1 to 17:for b= 0 to 20
22 print#15,"b-a:"0;t;b
23 next b:next t
24 for t=19 to 24:for b= 0 to 18
25 print#15,"b-a:"0;t;b
26 next b:next t
27 for t=25 to 30:for b= 0 to 17
28 print#15,"b-a:"0;t;b
29 next b:next t
30 for t=31 to 35:for b= 0 to 16
31 print#15,"b-a:"0;t;b
32 next b:next t
33 close 15
Tuesday, 13 March 2018
Pretty cool video on using modern compilers and dev tools to code for classic hardware
Pretty cool video on using modern compilers and dev tools to code for classic hardware
https://youtu.be/CdJOSfK1ja0
https://youtu.be/CdJOSfK1ja0
Subscribe to:
Comments (Atom)