English Amiga Board


Go Back   English Amiga Board > Main > Retrogaming General Discussion

View Poll Results: What game do you want to see ported to the Amiga?
Rolling Thunder (Arcade) 21 6.58%
Gauntlet (Arcade) 29 9.09%
Shinobi (Arcade) 49 15.36%
Pacman (Arcade) 7 2.19%
Final Fight (Arcade) 35 10.97%
Rastan (Arcade) 30 9.40%
Side Arms (Arcade) 1 0.31%
Nemesis/Gradius (Arcade) 13 4.08%
Raiden (Arcade) 10 3.13%
Raiden II (Arcade) 11 3.45%
Space Invaders (Arcade) 2 0.63%
Bad Dudes vs Dragon Ninja (Arcade) 6 1.88%
Wonder Boy (Arcade) 46 14.42%
Axelay (SNES) 9 2.82%
Double Dragon (Arcade) 13 4.08%
None - Do my own game! 37 11.60%
Voters: 319. You may not vote on this poll

 
 
Thread Tools
Old 25 August 2019, 14:39   #101
mcgeezer
Registered User
 
Join Date: Oct 2017
Location: Sunderland, England
Posts: 2,702
Quote:
Originally Posted by DanScott View Post
They've already "emulated" the Pacman ROM on Spectrum...

[ Show youtube player ]
Nice!

Very do-able then I would say given my theory is probably right.
mcgeezer is offline  
Old 25 August 2019, 14:54   #102
jotd
This cat is no more
 
jotd's Avatar
 
Join Date: Dec 2004
Location: FRANCE
Age: 52
Posts: 8,168
cool. But you don't want to compile MAME for amiga. You need to extract the useful parts. That is probably hell.

But if someone wants to do something like this (for several games using same hardware as Pacman) and you need some help in cross-compiling C/porting stuff, I'm in (maybe open another thread for this)
jotd is offline  
Old 25 August 2019, 15:06   #103
kamelito
Zone Friend
 
kamelito's Avatar
 
Join Date: May 2006
Location: France
Posts: 1,801
https://simonowen.com/spectrum/pacemuzx/
kamelito is offline  
Old 25 August 2019, 15:07   #104
DanScott
Lemon. / Core Design
 
DanScott's Avatar
 
Join Date: Mar 2016
Location: Tier 5
Posts: 1,212
Quote:
Originally Posted by jotd View Post
cool. But you don't want to compile MAME for amiga. You need to extract the useful parts. That is probably hell.

But if someone wants to do something like this (for several games using same hardware as Pacman) and you need some help in cross-compiling C/porting stuff, I'm in (maybe open another thread for this)

No, you'd just interpret the native Z80 code on the Amiga... either realtime (slow) or by pre-processing it into equivalent 68000 instructions... (faster)
DanScott is offline  
Old 25 August 2019, 23:33   #105
jotd
This cat is no more
 
jotd's Avatar
 
Join Date: Dec 2004
Location: FRANCE
Age: 52
Posts: 8,168
Dan, you'd just interpret the functional Z80 code on the amiga. There's a lot of non functional code to scrap. But the hardware isn't the amiga hardware. Takes some hard staring at the code (not to mention the special way the japanese coders have to do stuff that us europeans have a lot of trouble to understand)

The speccy version (damn impressive!) is probably much simpler to understand given the known & limited hardware of the ZXSpectrum. Someone already did the work and the source code is here: https://github.com/simonowen/pacemuz...r/pacemuzx.asm

The sound effects are really awesome too... That gives me some ideas. Would require transcribing Z80 code to C or asm (already did this with 6502 to C). The interesting part is that there is no "generic" stuff like in MAME, which makes things harder to understand. Excellent!

Last edited by jotd; 25 August 2019 at 23:39.
jotd is offline  
Old 25 August 2019, 23:40   #106
mcgeezer
Registered User
 
Join Date: Oct 2017
Location: Sunderland, England
Posts: 2,702
Quote:
Originally Posted by jotd View Post
Dan, you'd just interpret the functional Z80 code on the amiga. There's a lot of non functional code to scrap. But the hardware isn't the amiga hardware. Takes some hard staring at the code (not to mention the special way the japanese coders have to do stuff that us europeans have a lot of trouble to understand)

The speccy version (damn impressive!) is probably much simpler to understand given the known & limited hardware of the ZXSpectrum. Someone already did the work.
I think in my simplistic world I would be writing a code pre-processor/translator in Python which takes a z80 code segment and spits out a 68000 code segment, at the end of the day the code is simply sending bytes to those IO ports so the Amiga then just has to watch what data is coming into those ports each frame and then drive the graphics updates as needed.

Obviously in the speccy version they didn't have to bother with the translation as it's rocking a z80 anyway.

I have to say I'm warming to this idea enough to give it a try.
mcgeezer is offline  
Old 26 August 2019, 02:51   #107
DanScott
Lemon. / Core Design
 
DanScott's Avatar
 
Join Date: Mar 2016
Location: Tier 5
Posts: 1,212
Without getting too technical... What mcgeezer says
DanScott is offline  
Old 26 August 2019, 07:43   #108
jotd
This cat is no more
 
jotd's Avatar
 
Join Date: Dec 2004
Location: FRANCE
Age: 52
Posts: 8,168
Quote:
the Amiga then just has to watch what data is coming into those ports each frame and then drive the graphics updates as needed.
basically what MAME does. But you have to be smarter to avoid redrawing all screen. That's where it will be smooth instead of choppy

Quote:
I would be writing a code pre-processor/translator in Python which takes a z80 code segment and spits out a 68000 code segment,
exactly what I did for my 6502 conversions (except that it was 6502 opcode macros as C) and it works

I didn't test that but there's already a Z80 to 68000 converter here: https://www.lysator.liu.se/~celeborn...00/Z80CONV.ZIP with source. It's Atari basic, but not a problem to convert to python. I can give this a try. Looks professional

Code:
             CNVZ80 -  Z80 SOURCE TO MC68000 SOURCE UTILITY
 
                   (C) COPYRIGHT 1982 BY MOTOROLA INC.
jotd is offline  
Old 26 August 2019, 11:29   #109
Dunny
Registered User
 
Dunny's Avatar
 
Join Date: Aug 2006
Location: Scunthorpe/United Kingdom
Posts: 1,980
Quote:
Originally Posted by jotd View Post
basically what MAME does. But you have to be smarter to avoid redrawing all screen. That's where it will be smooth instead of choppy
Maintain an array of 296 booleans (or however high the screen is - the Spectrum is 352x296) and on each write to screen memory set a flag for that line. When the end of the frame comes and you update the screen image, just convert the lines that have been flagged.

Quote:
I didn't test that but there's already a Z80 to 68000 converter here: https://www.lysator.liu.se/~celeborn...00/Z80CONV.ZIP with source. It's Atari basic, but not a problem to convert to python. I can give this a try. Looks professional

Code:
             CNVZ80 -  Z80 SOURCE TO MC68000 SOURCE UTILITY
 
                   (C) COPYRIGHT 1982 BY MOTOROLA INC.
Looks nice. It only converts sources, not binaries (which is not surprising!). However, here is Pacman's ROM as disassembled source:

http://cubeman.org/arcade-source/pacman.asm

Commented too, which is nice. Will need some massaging to get into a state where you can use it though.
Dunny is offline  
Old 26 August 2019, 14:06   #110
vulture
Registered User
 
Join Date: Oct 2007
Location: Athens , Greece
Posts: 1,840
@Dunny
isn't Speccy's resolution 256x192? Unless you mean something entirely different by 352x296
vulture is offline  
Old 26 August 2019, 14:45   #111
Dunny
Registered User
 
Dunny's Avatar
 
Join Date: Aug 2006
Location: Scunthorpe/United Kingdom
Posts: 1,980
Quote:
Originally Posted by vulture View Post
@Dunny
isn't Speccy's resolution 256x192? Unless you mean something entirely different by 352x296
The full border is 352x296. The actual size of the user-addressable display RAM is indeed 256x192. But with judicious use of OUT, you can draw in the border - hence why it takes a LOT more CPU to be able to emulate a Speccy accurately than most people would think.
Dunny is offline  
Old 26 August 2019, 16:26   #112
jotd
This cat is no more
 
jotd's Avatar
 
Join Date: Dec 2004
Location: FRANCE
Age: 52
Posts: 8,168
Quote:
Maintain an array of 296 booleans (or however high the screen is - the Spectrum is 352x296) and on each write to screen memory set a flag for that line.
That's what I did for the Oric emu on amiga and it was pretty efficient (there were very few scrolling games on the Oric )

MAME has/had a "draw only changes" option. But I suppose that it would be lost in the C2P final conversion anyway. C2P would have to use this line flag too (so finally adapting "draw only changes" to C2P routine in Amiga MAME could be pretty efficient too for non-scrolling games)
jotd is offline  
Old 26 August 2019, 17:58   #113
vulture
Registered User
 
Join Date: Oct 2007
Location: Athens , Greece
Posts: 1,840
@Dunny

Ah ok, I thought you were talking about the usable resolution. I think Defenders of the Earth used the border for some effects.
vulture is offline  
Old 26 August 2019, 19:44   #114
jotd
This cat is no more
 
jotd's Avatar
 
Join Date: Dec 2004
Location: FRANCE
Age: 52
Posts: 8,168
Got MAME source for Amiga but the "main" source is missing for 0.35.12. Can't find it on mamedev.org. Too old. Someone, an idea?
jotd is offline  
Old 26 August 2019, 19:46   #115
Retro-Nerd
Missile Command Champion
 
Retro-Nerd's Avatar
 
Join Date: Aug 2005
Location: Germany
Age: 52
Posts: 12,438
This one?


http://aminet.net/package/misc/emu/mamesrc

http://www.progettosnaps.net/MAME/src/m35b12su.zip
Retro-Nerd is offline  
Old 26 August 2019, 21:00   #116
ZEUSDAZ
Registered User
 
ZEUSDAZ's Avatar
 
Join Date: Nov 2014
Location: England
Posts: 743
Don't care what anyone thinks of it but I wanna see Street Fighter 1 done properly on the Amiga, not expecting arcade perfectness but gotta be a whole lot better than what those morons at Tiertex / U.S. Gold ended up giving us,....followed by Rastan.
ZEUSDAZ is offline  
Old 26 August 2019, 21:21   #117
jotd
This cat is no more
 
jotd's Avatar
 
Join Date: Dec 2004
Location: FRANCE
Age: 52
Posts: 8,168
ok ZEUSDAZ if it weren't for Tiertex you'd be out of your job with your hilarious shit game time vids.

Retronerd: thanks! I'll check that. The c2p routine in Amiga MAME is in asm but processes the whole screen if I'm not mistaken. Time for a cross rebuild with gcc 6. If I can do that that will be a small miracle already.

Well sources are incomplete and nowhere to be found (ex: cpu/z80.c). Time to give it up... no big chance to succeed in doing something useful anyway...

Last edited by jotd; 26 August 2019 at 23:55.
jotd is offline  
Old 27 August 2019, 00:38   #118
saimon69
J.M.D - Bedroom Musician
 
Join Date: Apr 2014
Location: los angeles,ca
Posts: 3,519
Quote:
Originally Posted by ZEUSDAZ View Post
Don't care what anyone thinks of it but I wanna see Street Fighter 1 done properly on the Amiga, not expecting arcade perfectness but gotta be a whole lot better than what those morons at Tiertex / U.S. Gold ended up giving us,....followed by Rastan.
Read somewhere about the April Fool 1989 by the italian edition of The Games Machine [Street Fighter US Edition] and you will find not to be alone: for YEARS people did write to the magazine asking when would finally be released...


Last edited by saimon69; 27 August 2019 at 01:03.
saimon69 is offline  
Old 27 August 2019, 00:44   #119
dlfrsilver
CaptainM68K-SPS France
 
dlfrsilver's Avatar
 
Join Date: Dec 2004
Location: Melun nearby Paris/France
Age: 46
Posts: 10,413
Send a message via MSN to dlfrsilver
Quote:
Originally Posted by ZEUSDAZ View Post
Don't care what anyone thinks of it but I wanna see Street Fighter 1 done properly on the Amiga, not expecting arcade perfectness but gotta be a whole lot better than what those morons at Tiertex / U.S. Gold ended up giving us,....followed by Rastan.
an experience could be done with this one.

Pick the arcade program, redirect the video ports and other regs, and adapt as much as possible the sprite tile builder engine.

but anyway, SF1 is a 128 colors game, if you don't want to denature it, a good A500 port would be a mess to do, more complicated than an A1200 port.

this game would take at least 2mb of ram, considering the sprites size.

I have quite a number of stages already ripped......
dlfrsilver is offline  
Old 28 August 2019, 02:46   #120
ZEUSDAZ
Registered User
 
ZEUSDAZ's Avatar
 
Join Date: Nov 2014
Location: England
Posts: 743
Quote:
Originally Posted by jotd View Post
ok ZEUSDAZ if it weren't for Tiertex you'd be out of your job with your hilarious shit game time vids.

LOL, yeah there is that I guess, good to know that series of mine seems enjoyable to others,....BUT I STILL WANNA SEE A BETTER CONVERSION ATEMPT AT SF1 THAN WHAT TIERTEX COUGHED UP!
ZEUSDAZ is offline  
 


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Similar Threads
Thread Thread Starter Forum Replies Last Post
Next ST game port : Oids meynaf Amiga scene 68 09 August 2022 18:45
anyone willing to port a dos game to amigaos honx Amiga scene 40 07 May 2017 12:57
<none> as default port 2 (game ports) sodapop request.UAE Wishlist 26 17 September 2016 20:31
A1200 Game Port Malfunctions? Please help investor support.Hardware 5 09 March 2007 14:25
Setting up game port controls HELP playedalive New to Emulation or Amiga scene 2 11 July 2005 02:17

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +2. The time now is 05:43.

Top

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Page generated in 0.12448 seconds with 16 queries