and now with the new Motorola 68000 by Fox68k

If you have any questions on programming, this is the place to ask them, whether you're a newbie or an experienced programmer. Discussion on programming in general is also welcome. We will help you with programming homework, but we will not do your work for you! Any porting requests must be made in Developmental Ideas.
User avatar
Arqueiro
DCEmu Nutter
DCEmu Nutter
Posts: 785
https://www.artistsworkshop.eu/meble-kuchenne-na-wymiar-warszawa-gdzie-zamowic/
Joined: Tue Jul 02, 2002 9:29 am
Has thanked: 0
Been thanked: 0
Contact:

and now with the new Motorola 68000 by Fox68k

Post by Arqueiro »

totaly written in SH4

what we can do ???
3d graphics and visualization ?
http://www.arquiteturadigital.com
BlackAura
DC Developer
DC Developer
Posts: 9951
Joined: Sun Dec 30, 2001 9:02 am
Has thanked: 0
Been thanked: 1 time

Post by BlackAura »

Exactly the same as we could do before, maybe a little faster.
User avatar
Prophet][
DCEmu Mega Fan
DCEmu Mega Fan
Posts: 2984
Joined: Fri May 31, 2002 6:10 am
Location: Adelaide
Has thanked: 0
Been thanked: 0

Post by Prophet][ »

I know 68000 asm.
User avatar
Arqueiro
DCEmu Nutter
DCEmu Nutter
Posts: 785
Joined: Tue Jul 02, 2002 9:29 am
Has thanked: 0
Been thanked: 0
Contact:

Post by Arqueiro »

BlackAura wrote:Exactly the same as we could do before, maybe a little faster.

8-)
3d graphics and visualization ?
http://www.arquiteturadigital.com
User avatar
Quzar
Dream Coder
Dream Coder
Posts: 7497
Joined: Wed Jul 31, 2002 12:14 am
Location: Miami, FL
Has thanked: 4 times
Been thanked: 9 times
Contact:

Post by Quzar »

The only thing that sucks is that the API is really different than musashi or c68k.
"When you post fewer lines of text than your signature, consider not posting at all." - A Wise Man
DcSteve
Modder Of Rage
Modder Of Rage
Posts: 805
Joined: Mon Mar 18, 2002 12:41 pm
Location: Midwest
Has thanked: 0
Been thanked: 0
Contact:

Post by DcSteve »

have any of you successfully been able to incorperate this into a dc program?
Check out the beats of rage community at http://borrevolution.vg-network.com/
User avatar
Quzar
Dream Coder
Dream Coder
Posts: 7497
Joined: Wed Jul 31, 2002 12:14 am
Location: Miami, FL
Has thanked: 4 times
Been thanked: 9 times
Contact:

Post by Quzar »

i havnt tried yet. Looked at the api. it would be quite a bit more work than implementing c68k (which wasnt that hard). I for one am gonna wait till fox releases the documentation.
"When you post fewer lines of text than your signature, consider not posting at all." - A Wise Man
BlackAura
DC Developer
DC Developer
Posts: 9951
Joined: Sun Dec 30, 2001 9:02 am
Has thanked: 0
Been thanked: 1 time

Post by BlackAura »

Look for the PC version of FAME. Same API, and it has documentation.
User avatar
Quzar
Dream Coder
Dream Coder
Posts: 7497
Joined: Wed Jul 31, 2002 12:14 am
Location: Miami, FL
Has thanked: 4 times
Been thanked: 9 times
Contact:

Post by Quzar »

BlackAura wrote:Look for the PC version of FAME. Same API, and it has documentation.
i figured there are some differences cause he said he was gonna release seperate documentation for it. but yea i read that stuff.

do you happen to know of any PC emulator that uses that? i cant find any.
"When you post fewer lines of text than your signature, consider not posting at all." - A Wise Man
BlackAura
DC Developer
DC Developer
Posts: 9951
Joined: Sun Dec 30, 2001 9:02 am
Has thanked: 0
Been thanked: 1 time

Post by BlackAura »

There are some, but I don't recall any of them right now.
User avatar
fox68k
DC Developer
DC Developer
Posts: 49
Joined: Tue Aug 03, 2004 11:01 am
Has thanked: 0
Been thanked: 0
Contact:

Post by fox68k »

quzar wrote:
BlackAura wrote:Look for the PC version of FAME. Same API, and it has documentation.
i figured there are some differences cause he said he was gonna release seperate documentation for it. but yea i read that stuff.

do you happen to know of any PC emulator that uses that? i cant find any.
I will not release separate documentation for it. I said i will release separate documentation for the sources. That way, you will find the documentation for both PC version and SH4 version. And why? Because both libraries have the same API and the same data structure, so there is no need to make separate docs.

Cheers.
- fox68k -
User avatar
fox68k
DC Developer
DC Developer
Posts: 49
Joined: Tue Aug 03, 2004 11:01 am
Has thanked: 0
Been thanked: 0
Contact:

Post by fox68k »

quzar wrote:The only thing that sucks is that the API is really different than musashi or c68k.
Not very different. Maybe the part that could is memory handling. C68k leaves the task to a handling function. This makes the library more simple but at the cost of slower access to memory (not I/O, remember m68k I/O access through memory map). Using FAME you will have to define memory map parts directly to the lib, not inside a C function with several cases (switch... case).

I was looking at Genesis Plus DC sources and i believe that FAME can be integrated in easily.

Greetings.
- fox68k -
BlackAura
DC Developer
DC Developer
Posts: 9951
Joined: Sun Dec 30, 2001 9:02 am
Has thanked: 0
Been thanked: 1 time

Post by BlackAura »

The way FAME handles memory is a lot closer to the way most other assembly-based CPU emulators handle memory than it is to the way most C-based CPU emulators handle memory. What a shock.

It seems similar-ish to the way that StarScream or RAZE do things. You describe the memory layout to the CPU emulator, and it does most of the work. You only call a handler function if you need to, for hardware registers or such. Not really that hard to deal with, as long as you actually know the memory mapping of the system you're emulating. Having used StarScream, RAZE and some assembly-based 6502 emulator in various projects, it's kind of weird dealing with a callback function. It's slower too.

If you want documentation, just download the thing. The documentation is all there, and the interfaces are completely identical. It even has some additional information about the SH-4 version in there too.
User avatar
fox68k
DC Developer
DC Developer
Posts: 49
Joined: Tue Aug 03, 2004 11:01 am
Has thanked: 0
Been thanked: 0
Contact:

Post by fox68k »

BlackAura wrote:It seems similar-ish to the way that StarScream or RAZE do things. You describe the memory layout to the CPU emulator, and it does most of the work. You only call a handler function if you need to, for hardware registers or such. Not really that hard to deal with, as long as you actually know the memory mapping of the system you're emulating. Having used StarScream, RAZE and some assembly-based 6502 emulator in various projects, it's kind of weird dealing with a callback function. It's slower too.
You are right. StarScream uses a list of regions and RAZE uses memory banking. Memory banking can not be implemented in a 68000 emulator in the same way as in RAZE since the memory map size is bigger (24-bit addresses) and the I/O is memory mapped. Lists of regions are a good alternative: they are easy to implement, but could be slow when too many memory regions are defined.

But i wanted to go further. I designed an hybrid memory handling method between lists of regions and memory banking. This is, lists of regions externally and memory banking internally preserving both types of memory access in the 68k (mem and I/O). This implies easy and faster CPU context management (externally) and faster memory access (internally) at the cost of some memory statically allocated inside FAME.
- fox68k -
DcSteve
Modder Of Rage
Modder Of Rage
Posts: 805
Joined: Mon Mar 18, 2002 12:41 pm
Location: Midwest
Has thanked: 0
Been thanked: 0
Contact:

Post by DcSteve »

how can this core benefit gpdc in anyway other than speed, since i believe that the speed of the stefs core is more than sufficient.
User avatar
Hilltopper
Insane DCEmu
Insane DCEmu
Posts: 224
Joined: Sat Jan 10, 2004 5:01 pm
Has thanked: 0
Been thanked: 0

Post by Hilltopper »

I am just guessing here, but if this new core is fast enough it would give more cpu time to sound emulation, and BlackAura could even revert back to a display mode that may be slower but more accurate. Again this all depends on how fast it is and what BlackAura wants to do with it.
User avatar
Quzar
Dream Coder
Dream Coder
Posts: 7497
Joined: Wed Jul 31, 2002 12:14 am
Location: Miami, FL
Has thanked: 4 times
Been thanked: 9 times
Contact:

Post by Quzar »

BlackAura wrote:The way FAME handles memory is a lot closer to the way most other assembly-based CPU emulators handle memory than it is to the way most C-based CPU emulators handle memory. What a shock.

It seems similar-ish to the way that StarScream or RAZE do things. You describe the memory layout to the CPU emulator, and it does most of the work. You only call a handler function if you need to, for hardware registers or such. Not really that hard to deal with, as long as you actually know the memory mapping of the system you're emulating. Having used StarScream, RAZE and some assembly-based 6502 emulator in various projects, it's kind of weird dealing with a callback function. It's slower too.

If you want documentation, just download the thing. The documentation is all there, and the interfaces are completely identical. It even has some additional information about the SH-4 version in there too.
From reading the documentation and what you said here, I now understand better how the memory funtions work, but for me, who doesnt know how emulators work past a certain point, and only having worked with C cpu cores, this is all foreign to me.
"When you post fewer lines of text than your signature, consider not posting at all." - A Wise Man
User avatar
Hilltopper
Insane DCEmu
Insane DCEmu
Posts: 224
Joined: Sat Jan 10, 2004 5:01 pm
Has thanked: 0
Been thanked: 0

Post by Hilltopper »

I forgot to ask earlier, but does anyone have any idea if this new core will be fast enough to implement SEGA CD emulation?
User avatar
Arqueiro
DCEmu Nutter
DCEmu Nutter
Posts: 785
Joined: Tue Jul 02, 2002 9:29 am
Has thanked: 0
Been thanked: 0
Contact:

Post by Arqueiro »

im wainting for the next year, i tink that on 2k5 we will have a segacd emu :P
3d graphics and visualization ?
http://www.arquiteturadigital.com
BlackAura
DC Developer
DC Developer
Posts: 9951
Joined: Sun Dec 30, 2001 9:02 am
Has thanked: 0
Been thanked: 1 time

Post by BlackAura »

Unless it's ten times faster than C68k, then SegaCD emulation is out of the question. I've not tried it out yet, so I'm not completely sure.

C68K is fast enough for Genesis Plus / DC when using hardware accelerated rendering. The only catch is that the Z80 emulator eats a lot of the remaining CPU time, leaving very little CPU time for the sound emulation. So a faster CPU emulator (either of them) would give us more CPU time to play with the sound emulation, or do more accurate video emulation.

I still don't think GP/DC is going to be fast enough to use the software-based rendering code with sound enabled. It's fast enough (with C68k) to run at 95% full speed without frame skipping, so I'd guess that it'll be full speed with no frameskipping and no sound using FAME, even if FAME is only a little faster than C68K.

So, we're probably going to have a choice: Hardware rendering with sound, or software rendering without sound. There's still a long way to go with the hardware rendering, but I think I should be able to get it working well (not perfectly, but well enough that you won't notice) on at least 75% of the games I've tried on it. The remainder will either have graphics problems, or they'll be unplayable. For those, you can use the software renderer, but you'll have to sacrifice sound.
Post Reply