Minty, we seem to be on the same page with this serial thing. I'm going to make some orders soon and pick up what I need off of ebay most likely and put my own cable together but if you have a known working design for a cable that would be a great help.
Edit: some code could be useful too, if only ...
Search found 237 matches
- Fri Sep 26, 2014 11:27 pm
- Forum: Hardware
- Topic: Yet another "I want to use the Genesis serial port"
- Replies: 31
- Views: 35157
- Fri Sep 26, 2014 11:25 pm
- Forum: Hardware
- Topic: Yet another "I want to use the Genesis serial port"
- Replies: 31
- Views: 35157
- Fri Sep 26, 2014 6:48 pm
- Forum: Blabla
- Topic: Nested subroutines nightmare.
- Replies: 13
- Views: 16657
Also as far as z80 I wouldn't say it's really more difficult but I don't like it very much... I don't like little endian, I don't like the right to left destination/source syntax, I don't like having registers you can count on one hand. It's also a different kind of thinking than 68k because it's 8 ...
- Fri Sep 26, 2014 6:40 pm
- Forum: Blabla
- Topic: Nested subroutines nightmare.
- Replies: 13
- Views: 16657
Yeah I don't know why I wrote it that way, that's wrong. lol. The signs go outside the brackets.
As far as stack overwriting RAM variables it could happen if your stack gets big enough but that's part of the reason the stack is traditionally at the end of RAM. You would need to both nearly fill the ...
As far as stack overwriting RAM variables it could happen if your stack gets big enough but that's part of the reason the stack is traditionally at the end of RAM. You would need to both nearly fill the ...
- Thu Sep 25, 2014 11:32 pm
- Forum: Megadrive/Genesis
- Topic: Timers.
- Replies: 10
- Views: 9179
You're right, I was thinking of just counting lines but I guess though that might work in a context of timing for linescroll graphics it doesn't actually translate well to a timer.
Isn't there some kind of problem with the 2612 timer that makes it spotty? Like something about how the timing isn't ...
Isn't there some kind of problem with the 2612 timer that makes it spotty? Like something about how the timing isn't ...
- Thu Sep 25, 2014 8:59 pm
- Forum: Blabla
- Topic: Nested subroutines nightmare.
- Replies: 13
- Views: 16657
- Thu Sep 25, 2014 8:31 pm
- Forum: Megadrive/Genesis
- Topic: Timers.
- Replies: 10
- Views: 9179
- Thu Sep 25, 2014 1:33 am
- Forum: Hardware
- Topic: Yet another "I want to use the Genesis serial port"
- Replies: 31
- Views: 35157
- Wed Sep 24, 2014 11:09 pm
- Forum: Hardware
- Topic: Yet another "I want to use the Genesis serial port"
- Replies: 31
- Views: 35157
Thank you SO much. Just a couple more questions: Does 3.3V TTL or 5V matter? From what I can tell the MAX3232 breakout boards put out 3.3V so I'm curious as to whether I can get away with that or if I need an actual MAX232 part. I'm assuming the genesis is probably 5V, so what I'm really asking is ...
- Wed Sep 24, 2014 4:45 pm
- Forum: Sound
- Topic: z80 busreq problem / GEMS
- Replies: 6
- Views: 18400
- Tue Sep 23, 2014 10:22 pm
- Forum: Hardware
- Topic: Yet another "I want to use the Genesis serial port"
- Replies: 31
- Views: 35157
Yet another "I want to use the Genesis serial port"
I have a model 1 with the EXT connector I'd like to use for serial communication via RS232--simple text, maybe xmodem for very small transfers. I want to hook it up to a PC serial port. My machine doesn't have a parallel port (so, not an option for now), and I'm on Linux. I have looked around this ...
- Tue Sep 23, 2014 4:42 am
- Forum: Video Display Processor
- Topic: 0xC000 VRAM stuff, and efficiency question.
- Replies: 4
- Views: 9035
- Tue Sep 23, 2014 4:41 am
- Forum: Sound
- Topic: z80 busreq problem / GEMS
- Replies: 6
- Views: 18400
_gemsholdz80 - is just busreq.
if you hold it somewhere (in main for example), and then interupt occured, and if it contains another hold call, it will deadlock, because you can't hold bus TWICE.
I think this is what happened because refactoring my code eliminated the problem. Now that I am aware ...
if you hold it somewhere (in main for example), and then interupt occured, and if it contains another hold call, it will deadlock, because you can't hold bus TWICE.
I think this is what happened because refactoring my code eliminated the problem. Now that I am aware ...
- Sat Sep 20, 2014 9:26 pm
- Forum: Sound
- Topic: 68000 ASM generating a tone on single FM channel YM2612
- Replies: 23
- Views: 44059
Also you'll want Charles MacDonald's VDP doc and the info on this page and maybe the interactive VDP docs at the bottom of that page.
- Sat Sep 20, 2014 4:35 am
- Forum: Sound
- Topic: 68000 ASM generating a tone on single FM channel YM2612
- Replies: 23
- Views: 44059
Actually for programming of this sort you'd probably be fine with basic algebra. Mostly you're going to want a good understanding of the chip hardware and FM synthesis in general, but the advantage of programming to hardware like this is it's not the same as programming something like an emulator ...