The Commodore 64, commonly called C64, C=64 (after the graphic logo on the case) or occasionally CBM 64 (for Commodore Business Machines), or VIC-64, was an 8-bit home computer introduced in January 1982 by Commodore International.
936
votes
15answers
131k views
How do emulators work and how are they written?
How do emulators work? When I see NES / SNES or C64 emulators, it astounds me.
Do you have to emulate the processor of those machines by interpreting its particular assembly instructions? What ...
38
votes
9answers
2k views
Draw on screen border in Commodore 64
Ok. I hope it does not get closed because I have this curiosity since 25 years and I would love to understand the trick.
In the commodore 64 the border was not addressable by the 6569 VIC. All you ...
27
votes
9answers
9k views
Best resource for serious Commodore 64 programming
What is the best resource for serious Commodore 64 programming?
Assume that serious programming on the Commodore 64 is not done in BASIC V2 that ships with the Commodore 64.
I feel like most of the ...
21
votes
5answers
2k views
How do I show sprites in the border on C64?
I've seen cool C64 demos showing sprites in the border area of the screen. It shouldn't be possible; I think they managed to fool the graphics chip somehow. How exactly did they do it?
15
votes
4answers
4k views
Bash Version of C64 Code Art: 10 PRINT CHR$(205.5+RND(1)); : GOTO 10
I picked up a copy of the book 10 PRINT CHR$(205.5+RND(1)); : GOTO 10
http://www.amazon.com/10-PRINT-CHR-205-5-RND/dp/0262018462
This book discusses the art produced by the single line of ...
14
votes
4answers
416 views
How to autostart a program from floppy disk on a Commodore c64
Good news, my c64 ist still running after lots of years spending time on my attic..
But what I always wanted to know is:
How can I automatically load & run a program from a floppy disk that is ...
13
votes
1answer
268 views
How to disable screen in Commodore 64?
I know this question is very spesific question but I know there are some c64 code gurus around here. So, here is my question.
When I try to disable screen using $d011 trick, upper/lower border also ...
11
votes
4answers
1k views
How to reproduce C64-like sounds?
I did some of my own research and found out that SID-chips had only few hardware supported synthesizing features. Including three audio oscillators with four possible waveforms (sawtooth, triangle, ...
10
votes
8answers
2k views
List of Best C64 Programming Books and Courseware
What books and/or courseware should be considered "must read" or definitive on the subject of C64 programming?
This question asks about the knowledge that isn't tied up in books. However a sea of C64 ...
3
votes
1answer
41 views
CBM Program Studio Assembler syntax
I'm trying to learn CBM Program Studio. But I can't get macros work for me. Withouth the macro the codes was ok. But when I add the macro part it gives "No Matching End Definition" on line 7.
Any ...
2
votes
7answers
897 views
Commodore C64 Emulator? [closed]
I'm kind of feeling nostalgic and want to play on a C64 like I did when I was 10, but I don't have one to hand.
Is there an emulator available?
2
votes
2answers
446 views
DSP-type effects in realtime on the C64: How is it possible?
I just saw this, and it is one of the most amazing things I've ever seen:
http://www.youtube.com/watch?v=MDrqBYkco-Y
I am not even able to fathom this. What is going on here?
2
votes
1answer
138 views
Timer frequency for C64 CIA Timers?
Can anyone confirm the frequency the C64 CIA 16bit timers tick per second ?
2
votes
2answers
347 views
Compare keystrokes - Assembly CCS64
I want to compare keystrokes in assembly (CCS64).
If I type in the same key in a row I want to do something
example: A A = do this
but if I type this: A B = do something else
Suggestions?
1
vote
1answer
21 views
CA65: 'Range error' from 16-bit computed address
Given the following CA65 code:
foo = $82
.scope
LDA #$ff
STA foo*$40
.endscope
I get this error message:
foo.s(5): Error: Range error (8320 not in [0..255])
Interestingly, the ...
1
vote
2answers
66 views
Commodore 64 Development Tools for Mac OS X
Which tools do you use for cross-development for C64 on OSX?
Which assembler, text editor or IDE, gfx, sprite, charset editors?
Or do you simply prefer Windows environment via parallels desktop or ...
1
vote
0answers
101 views
Commodore 64 programmers, How To Use ReSid In C++ Game?
Would it be possible to use the ReSID emulation source code in a game I'm making? I want a video game sound engine like the good old days. Not wavs/mp3s. Any thoughts? ...
0
votes
1answer
140 views
Java libraries to read/write C64 T64, D64 image files? [closed]
I would like to read/write T64 and D64 from a Java program. Are there any libraries available to do that?
EDIT
I have looked at several C64 emulators that emulate the 1541, but the problem is they ...
0
votes
0answers
6 views
Who's calling my interrupt handler if I have both CIAs turned off?
I'm trying to set up a simple raster interrupt handler to change the background color in a given stripe. However, my interrupt handler seems to be called all the time. (the code uses CA65's format)
...
0
votes
0answers
6 views
any library for polyphase filters( inplementind decimation and interpolation) provided by Texas Instruments for c64?
i am working on c64 and i want to do upsampling and downsampling on some data. Is there any library function provided by Texas Instruments that implements polyphase filters for the above???? plz help
0
votes
0answers
88 views
Java utility to convert a bitmap to a C64 hires/multi color bitmap
Lets pretend I have loaded my bitmap from a file without any problems and I now have a RenderedImage or similar. I would like for a tool or API that produces the optimal C64 bitmap, including the ...