Cloud CPM F18a 80-Column
-
- Posts: 13
- Joined: Mon Apr 10, 2023 8:00 am
Re: Cloud CPM F18a 80-Column
No, it’s a hardware replacement for the video chip.
-
- Posts: 14
- Joined: Mon Apr 03, 2023 5:37 pm
Re: Cloud CPM F18a 80-Column
Thanks! This is fantastic on the emulator!
Now to find some affordable solution to run this on the Nabu Hardware.
Now to find some affordable solution to run this on the Nabu Hardware.
-
- Posts: 7
- Joined: Tue Apr 11, 2023 3:54 am
Re: Cloud CPM F18a 80-Column
Incorrect. The F18A is a VDP replacement implemented in FPGA. You remove the 9918A VDP and replace it with the F18A board.
Available here:
https://www.arcadeshopper.com/wp/store/ ... /539720609
there's also a home-brew hdmi version that was recently announced but you have to solder and assemble it yourself and it runs at 50% of the speed of the real version, if you just want 80col text it works fine for that
Re: Cloud CPM F18a 80-Column
Here is the lower cost diy alternative: viewtopic.php?t=116
Re: Cloud CPM F18a 80-Column
I'm getting the same blank blue screen, running MAME on a Linux host. How do I get this F18a emulator to work with my system?
Re: Cloud CPM F18a 80-Column
did you read the first post?
Re: Cloud CPM F18a 80-Column
It works fine on Windows, yes, but not on Linux. Do I have to be on Windows for this to work?
-
- Posts: 3
- Joined: Tue Apr 04, 2023 7:23 am
Re: Cloud CPM F18a 80-Column
I asked but never got an answer.
Who created the F18a NABU MAME version? Have the changes been made available on github or some other usable form for compiling (non-Windows)?
Thanks.
Who created the F18a NABU MAME version? Have the changes been made available on github or some other usable form for compiling (non-Windows)?
Thanks.
Re: Cloud CPM F18a 80-Column
I don't see every question. Here are the changes to use V9938 instead of the TMS9918ajefferystone wrote: ↑Fri May 12, 2023 3:10 am I asked but never got an answer.
Who created the F18a NABU MAME version? Have the changes been made available on github or some other usable form for compiling (non-Windows)?
Thanks.
Code: Select all
// remove this...
//TMS9918A(config, m_tms9928a, 10.738635_MHz_XTAL);
//m_tms9928a->set_screen(m_screen);
//m_tms9928a->set_vram_size(0x4000);
//m_tms9928a->int_callback().set(*this, FUNC(nabupc_state::vdp_int_w));
// add this...
V9938(config, m_v9938, 21.477272_MHz_XTAL);
m_v9938->set_screen_ntsc(m_screen);
m_v9938->set_vram_size(0x4000);
m_v9938->int_cb().set(*this, FUNC(nabupc_state::vdp_int_w));
Re: Cloud CPM F18a 80-Column
There are additional changes required to compile f18a support for MAME.
I've attached a patch file against Brian's latest keyboard emulation update.
I've attached a patch file against Brian's latest keyboard emulation update.
- Attachments
-
- nabupc-v9938.zip
- (1.16 KiB) Downloaded 466 times