Search found 125 matches

by doragasu
Tue Mar 22, 2016 7:15 pm
Forum: Hardware
Topic: Reading and writing bytes. Addresses, data, LDSW and UDSW...
Replies: 17
Views: 23745

Reading and writing bytes. Addresses, data, LDSW and UDSW...

AFAIK, the 68k at the hardware level, cannot read a single byte: if you want to read a byte, it reads a full 16-bit word, but keeps only the relevant 8 bits (the upper or lower byte). But when writing to the cart, it can write bytes: we have LDSW line to write the lower part (at an odd address) and ...
by doragasu
Mon Feb 08, 2016 8:00 am
Forum: Hardware
Topic: [WIP] Not a debug cart project!
Replies: 46
Views: 53650

Re: [WIP] Not a debug cart project!

The SVP doesn't even have its program in boot ROM, the 68000 just loads the program into SVP RAM and then tells the SVP to wake up. (incidentally, I think the SuperFX is like this as well) That's exactly what happens with TI DSPs if you configure them for HPI boot. The boot ROM does nothing in this...
by doragasu
Sun Feb 07, 2016 10:35 am
Forum: Hardware
Topic: [WIP] Not a debug cart project!
Replies: 46
Views: 53650

Re: [WIP] Not a debug cart project!

Yo do not need extra memory or glue logic for DSPs (excepting level shifters) that have a host controller interface. They can be mapped on the console's memory and act as slaves: the 68k can acces the complete memory map of the DSP, upload the code and boot it. Ok, but would they also not need a uC...
by doragasu
Fri Feb 05, 2016 4:04 pm
Forum: Hardware
Topic: [WIP] Not a debug cart project!
Replies: 46
Views: 53650

Re: [WIP] Not a debug cart project!

Yo do not need extra memory or glue logic for DSPs (excepting level shifters) that have a host controller interface. They can be mapped on the console's memory and act as slaves: the 68k can acces the complete memory map of the DSP, upload the code and boot it.
by doragasu
Fri Feb 05, 2016 1:35 pm
Forum: Hardware
Topic: [WIP] Not a debug cart project!
Replies: 46
Views: 53650

Re: [WIP] Not a debug cart project!

The MD library internally will only access the WiFi Cart's UART registers, mapped at 0xA130C0, to send and receive data to/from the WiFi module. If you want to know how the UART works, you can google and read the SC16C550B datasheet. From there, it's just a matter about how I define the protocol be...
by doragasu
Thu Feb 04, 2016 7:47 am
Forum: Hardware
Topic: [WIP] Not a debug cart project!
Replies: 46
Views: 53650

Re: [WIP] Not a debug cart project!

I do not want the 68k to handle low level network stuff (like building packets for the transport layer and below). Let the 68k handle the game, and the CPU in the WiFi module handle communications! So IPv6 stuff should be done in the WiFi module. But right now, IPv6 is not supported by esp-open-sdk ...
by doragasu
Wed Feb 03, 2016 10:09 pm
Forum: Hardware
Topic: [WIP] Not a debug cart project!
Replies: 46
Views: 53650

Re: [WIP] Not a debug cart project!

On that note, did you ever think how programming would work from the 68000's viewpoint? (even if just a mockup idea) Yep. I have in mind implementing an API that let's you do: - WiFi stuff: scanning, configuring connection parameters (SSID, pass, DHCP/Static IP, etc.). - Socket stuff: Creating TCP ...
by doragasu
Wed Feb 03, 2016 5:00 pm
Forum: Hardware
Topic: [WIP] Not a debug cart project!
Replies: 46
Views: 53650

Re: [WIP] Not a debug cart project!

@MintyTheCat: I think there might be a confusion. When I talk about using the UART, I mean the UART chip inside my WiFi Cart (that is wired to the 68k bus and has the 16 byte FIFOs and the RTS/CTS signals wired to the WiFi module). Using the internal 7.61 MHz clock signal, it can achieve up to 7610/...
by doragasu
Wed Feb 03, 2016 8:01 am
Forum: Hardware
Topic: [WIP] Not a debug cart project!
Replies: 46
Views: 53650

Re: [WIP] Not a debug cart project!

EXT_Int is one option. Is this the interrupt available on the gamepad ports? I would like the device to be connected only to the cart slot. You can also optimise your data Tx by calculating the best time to transmit keyed off one of the H/V-Interrupts - which you can get on the Cart Slot. Think of ...
by doragasu
Tue Feb 02, 2016 7:55 pm
Forum: Hardware
Topic: [WIP] Not a debug cart project!
Replies: 46
Views: 53650

Re: [WIP] Not a debug cart project!

BTW: Now than I talk about software, I think the main challenge I'll face is maximizing throughput while ingame. The UART I'm using has tiny 16-byte TX and RX FIFOs, so if I want to avoid wasting too much time polling, I'll be limited to 16 bytes per frame, unless I use HBLANK interrupts or any othe...
by doragasu
Tue Feb 02, 2016 7:49 pm
Forum: Hardware
Topic: [WIP] Not a debug cart project!
Replies: 46
Views: 53650

Re: [WIP] Not a debug cart project!

@HardwareMan: Impressive! Maybe you should rescue that project! What is this going to be used for? There are some devs in 1985alternativo interested in making an online game, but as they are also busy with other things, it's not clear if it will ever materialize. Anyway, I would like to release ever...
by doragasu
Tue Feb 02, 2016 7:30 am
Forum: Hardware
Topic: [WIP] Not a debug cart project!
Replies: 46
Views: 53650

Re: [WIP] Not a debug cart project!

Image
First prototype
by doragasu
Mon Feb 01, 2016 2:59 pm
Forum: Hardware
Topic: [WIP] Not a debug cart project!
Replies: 46
Views: 53650

[WIP] Not a debug cart project!

Image
by doragasu
Sat Jan 09, 2016 6:27 pm
Forum: Hardware
Topic: Question about B31 (aka #TIME) cart pin
Replies: 14
Views: 15579

Re: Question about B31 (aka #TIME) cart pin

It's just the weird name that made me suspect... Why is it called #TIME and not something like #CEX?
by doragasu
Sat Jan 09, 2016 3:51 pm
Forum: Hardware
Topic: Question about B31 (aka #TIME) cart pin
Replies: 14
Views: 15579

Re: Question about B31 (aka #TIME) cart pin

I have changed the program to write to 0xA130CE, and then read from the same address to a variable, and... mystery solved!: http://i.imgur.com/CXn2AfF.png I was wrongly assuming that when writing to even addresses, #LDSW was active, but it is #UDSW line the one that is lowered! In the upper capture ...