Page 7 of 18

Re: X68000 Beta - Updates and Releases

Posted: Fri Oct 30, 2020 8:24 pm
by AeroCity
I am also having sound issues with Chourensha. It seems, both non JT51 and Jt51 versions have different issues with generating all instruments consistently, as well as the noise channel.it would be soooo awesome, if someone could look into it. It's my favorite game! :)

Re: X68000 Beta - Updates and Releases

Posted: Sun Nov 22, 2020 11:34 pm
by reminon
Is the second SD still needed with the beta updates?

Re: X68000 Beta - Updates and Releases

Posted: Mon Nov 23, 2020 4:15 am
by mattsoft
reminon wrote: Sun Nov 22, 2020 11:34 pm Is the second SD still needed with the beta updates?
nope. just put the X68000.rom in the /bootrom directory, and your disk images in /X68000.

Re: X68000 Beta - Updates and Releases

Posted: Fri Dec 04, 2020 10:06 am
by schlika
Hi !

How amazing this x68k core is getting ! Thanks for the hard work !

I have tried the os9 images from this site : https://nfggames.com/X68000/index.php/O ... /?upload=1

Unfortunately the "bootloader" does not seem to find any OS-9 kernel. Getting into that bootloader seems to indicate the image itself is somehow readable I suspect ?

Using the XM6 Pro-68k emulator I get this screen :
XM6 booting os9
XM6 booting os9
0002.jpg (12.77 KiB) Viewed 13919 times
and os9 boots into its gui

With MiSTerFPGA :
mister-os9.jpg
mister-os9.jpg (181.93 KiB) Viewed 13919 times
I did try inserting the $00005194 address in MiSTer but I get strange keyboard input and it does not work any better. Same behaviour with X68000_20200715.rbf & X68000_20200913.rbf. As you can see on the screenshot, the first text column also has disappeared starting with 5th line.

Thanks helping !

Re: X68000 Beta - Updates and Releases

Posted: Thu Jan 21, 2021 4:28 pm
by pcfreak324
The latest blog post from 12/12/2020 has an attachment "release-F68k_DE0CVDEMU.201212.qar" that does not contain an rbf file for MiSTer. Could somebody please upload the latest build for MiSTer?

Re: X68000 Beta - Updates and Releases

Posted: Thu Jan 21, 2021 4:30 pm
by wark91
This release is not for Mister.

Re: X68000 Beta - Updates and Releases

Posted: Sat Jan 23, 2021 4:19 am
by NLeseul
プーさん、ありがとうございます‼ I'm very happy to have a device I can play these old PC games on.

Just to report on my testing with some RPG disk images I happen to have on hand:
  • Lagoon is crashing on boot for me. On emulator, it starts with a line drawing of the ZOOM mascot, as seen in the screenshot below. On the MiSTer, it freezes with just the yellow cursor in the corner and making a buzzing noise.
  • Arcus Pro 68k loads and runs. Music and text play during the intro, but no images are rendered. It's trying to draw something, since there's a slightly darker black square where the image should be in the attached screenshot from the MiSTer.
  • All four Dragon Knight games work fine.
Once again, thank you for your work, and I look forward to trying more titles on this platform in the future!

Re: X68000 Beta - Updates and Releases

Posted: Sat Feb 13, 2021 1:10 pm
by shira
tontonkaloun wrote: Mon Sep 14, 2020 3:04 pm The brand new core with the jt51 sound chip
Could you tell me what changes you made?
I tried to to change it with this one (https://github.com/kunichiko/FPGA-X68k-DE0CV-OPM-JT51), which basically works.
But I'm getting some clicks and pops in the wrong places, so I might have missed something.
In your version the sound looks clean.

Thank you.

Re: X68000 Beta - Updates and Releases

Posted: Fri Mar 05, 2021 11:43 am
by antor
For anybody interested I modified vertical refresh to be 55.3 Hz which is closer to 55.45 Hz which is what most games use. For some reason sound is Nemesis 90 Kai is not perfect I believe neither with JT51 or the default implementation. I wonder why this could be. I want to try to force the core to think it's a 16 Mhz and 4 Mbyte machine, which I believe requires creating a special sram.dat file.

Any idea how to fix sound? (I included the lastest JT51 implementation from github but in Nemesis 90 there are missing sounds, e.g. powerups do not sound).

Does x68000 core support 16 Mhz 68000 and 4 Mbyte RAM?

Re: X68000 Beta - Updates and Releases

Posted: Fri Mar 05, 2021 3:31 pm
by antor
OK. I respond myself. I recompied X68000 core w/ sysclock set to 16 Mhz. Now Nemesis 90 Kai loads pcm4 (it loaded pcm1 before), but sound still not good (missing sounds).

Re: X68000 Beta - Updates and Releases

Posted: Fri Mar 05, 2021 4:51 pm
by shira
Current core is AFAIK only 10 MHz with 12 MB RAM (See screenshot in the area top left). Curiously memtest is giving me some errors. Will have to check that.
20210305_164600-screen.png
20210305_164600-screen.png (6.69 KiB) Viewed 11673 times

On a different topic, maybe some of you are interested.
Here is a small patch that enables MIDI over UART. This was easy because the core already has the MIDI interface implemented.
Support for MT32-pi could probably added easily, but I don't have one to test it.

Code: Select all

diff --git a/X68000/MiSTer/X68000.sv b/X68000/MiSTer/X68000.sv
--- a/X68000/MiSTer/X68000.sv	(revision f85249ee523e7e2bb10283cd3e6d14663a4b9bcc)
+++ b/X68000/MiSTer/X68000.sv	(revision 71c69f9d8675b448452bcd9f2f23281da8fe3267)
@@ -180,7 +180,7 @@
 assign VGA_SL    = 0;
 assign VGA_F1    = 0;
 assign VGA_SCALER = 0;
-assign {UART_RTS, UART_TXD, UART_DTR} = 0;
+assign {UART_RTS, UART_DTR} = 0;
 assign {DDRAM_CLK, DDRAM_BURSTCNT, DDRAM_ADDR, DDRAM_DIN, DDRAM_BE, DDRAM_RD, DDRAM_WE} = 0;
 
 assign LED_USER  = ioctl_download & ~ldr_done;
@@ -195,7 +195,7 @@
 
 `include "build_id.v"
 parameter CONF_STR = {
-	"X68000;;",
+	"X68000;UART115200,MIDI;",
 	"-;",
 	"O01,Aspect ratio,Original,Full Screen,[ARC1],[ARC2];",
 	"-;",
@@ -455,6 +455,9 @@
 	.pSramld(sramld),
 	.pSramst(sramst),
 
+	.pMidi_in(UART_RXD),
+	.pMidi_out(UART_TXD),
+
 	.pVideoR(VGA_R),
 	.pVideoG(VGA_G),
 	.pVideoB(VGA_B),

Re: X68000 Beta - Updates and Releases

Posted: Fri Mar 05, 2021 8:17 pm
by Meringues
I’ve been hoping for some updates to this core, oh and MT32-pi Support would be brilliant!

Re: X68000 Beta - Updates and Releases

Posted: Sat Mar 06, 2021 4:04 pm
by LamerDeluxe
I have my MT32-pi ingredients ordered (now the long wait begins), so MT32-pi support would indeed be much appreciated!

Re: X68000 Beta - Updates and Releases

Posted: Sat Mar 06, 2021 6:51 pm
by wark91
Thanks @shira for the change on X68K core.
Testing with soundfont because I don't have my midi device yet.
This build use the source from last version with just the change of Shira thanks again !

Re: X68000 Beta - Updates and Releases

Posted: Sun Mar 07, 2021 4:25 pm
by squeeb
Thanks for the work on adding MIDI over UART @shira and @wark91!

I initially had some wonky behavior but resetting via UART menu seemed to do the trick. Castlevania sounds great with an SC-88 8-)

Does anyone know how to set a core specific video_mode in the MiSTer.ini for this? I tried [x68000] and a few modes underneath but they didn't seem to take.

Re: X68000 Beta - Updates and Releases

Posted: Sun Mar 07, 2021 5:27 pm
by tontonkaloun
squeeb wrote: Sun Mar 07, 2021 4:25 pm Thanks for the work on adding MIDI over UART @shira and @wark91!

I initially had some wonky behavior but resetting via UART menu seemed to do the trick. Castlevania sounds great with an SC-88 8-)

Does anyone know how to set a core specific video_mode in the MiSTer.ini for this? I tried [x68000] and a few modes underneath but they didn't seem to take.
You're right :

Re: X68000 Beta - Updates and Releases

Posted: Thu Mar 11, 2021 6:46 pm
by Milspex
wark91 wrote: Sat Mar 06, 2021 6:51 pm Thanks @shira for the change on X68K core.
Testing with soundfont because I don't have my midi device yet.
This build use the source from last version with just the change of Shira thanks again !
does this build only do midi? no regular game audio right? it's either that or I messed something up

Re: X68000 Beta - Updates and Releases

Posted: Thu Mar 11, 2021 7:33 pm
by wark91
This build permits to add UART menu in settings of this core.
With this UART menu, you can connect a midi device (like MT-32, SC-55, ..) or use soundfonts.
When you launch a game compatible with those devices, you can select in game the audio you like.
For Akumajou Dracula (1993)(Konami), when you load the game you have a menu to choose the type of sound you want.

Thanks,

Re: X68000 Beta - Updates and Releases

Posted: Thu Mar 11, 2021 7:42 pm
by Milspex
ok thanks I have a mt-32 but it wasn't plugged in so got no actual music , just some bleepy midi tones

Re: X68000 Beta - Updates and Releases

Posted: Thu Mar 11, 2021 8:35 pm
by wark91
If you don't use MT-32 device and want to have some kind of MT-32/SC-55 experience, you can use soundfonts like me.
Go to settings of the core -> System -> UART Mode and choose Midi.
In Midi, choose MidiLink -> Local, Type -> FSYNTH and the menu soundfonts will be available and you can select soundfonts you have already download and put on your SDcard in this directory : /media/fat/linux/soundfonts

Re: X68000 Beta - Updates and Releases

Posted: Thu Mar 11, 2021 10:50 pm
by Brettster
I have an SC55 but seeing as there's no easy way to get the sound from it back into the Mister and out of the HDMI, I gave Fsynth a go. it works well but the soundfonts I tried are not as nice sounding as the real thing. is there an accurate Sound Font or a recommended one to use?

Re: X68000 Beta - Updates and Releases

Posted: Fri Mar 12, 2021 1:07 am
by Hisoka89
What are the games actually run perfectly on X68000 core please ?

Re: X68000 Beta - Updates and Releases

Posted: Fri Mar 12, 2021 7:39 pm
by pgimeno
wark91 wrote: Thu Mar 11, 2021 8:35 pm Go to settings of the core -> System -> UART Mode and choose Midi.
Sorry if I'm dumb but I don't see a System menu. The options I see are:

Aspect Ratio
Reset
NMI
Power
FDD0
FDD1
SASI
SRAM
Sync FDD0
Sync FDD1
Eject FDD0
Eject FDD1
Load SRAM
Store SRAM

Re: X68000 Beta - Updates and Releases

Posted: Fri Mar 12, 2021 7:45 pm
by shira
Go a page to the right, thats the system menu, there you should find it.

Re: X68000 Beta - Updates and Releases

Posted: Fri Mar 12, 2021 9:01 pm
by pgimeno
Oh my, yes I am dumb! Sorry. And thanks!

Re: X68000 Beta - Updates and Releases

Posted: Sun Mar 14, 2021 1:17 am
by Hisoka89
Does super hang on work on the core ?

Re: X68000 Beta - Updates and Releases

Posted: Sun Mar 14, 2021 9:53 am
by breiztiger
freeze for me after dos boot and echo off

Re: X68000 Beta - Updates and Releases

Posted: Tue Mar 16, 2021 9:06 pm
by kikusui
Quick question, is the latest midi update of this core compatible with the MT32-Pi yet? I've got the midi audio working with uart & the internal Arm processor (and although it does sound nice the music trips up over itself) so gave the MT32-Pi a try but not getting anything from that.

If this core is compatible with the MT32-Pi, is there any chance someone could post a simple guide for MT32-Pi & X68000 usage? (I have successfully used the MT32-pi with the AO486 core so I'm probably missing something really obvious).

Re: X68000 Beta - Updates and Releases

Posted: Wed Mar 17, 2021 12:16 am
by TrivikramaDas
kikusui wrote: Tue Mar 16, 2021 9:06 pm Quick question, is the latest midi update of this core compatible with the MT32-Pi yet? I've got the midi audio working with uart & the internal Arm processor (and although it does sound nice the music trips up over itself) so gave the MT32-Pi a try but not getting anything from that.

If this core is compatible with the MT32-Pi, is there any chance someone could post a simple guide for MT32-Pi & X68000 usage? (I have successfully used the MT32-pi with the AO486 core so I'm probably missing something really obvious).
It doesn't seem to support the MT32pi yet. I was messing with it the other day and couldn't get any. I hope we get MT32pi integration soon.

Re: X68000 Beta - Updates and Releases

Posted: Wed Mar 17, 2021 8:16 am
by wark91
The support of MT32pi will required an update of sys and adding option in the core.