Reply 1620 of 1724, by Baron von Riedesel
Methanoid wrote on 2024-10-14, 14:41:If I use JEMMEX or HIMEMX then SBEMU detects my AMD GPU HDA audio but both DOOM and DUKE3D crash when loading the protected mode […]
If I use JEMMEX or HIMEMX then SBEMU detects my AMD GPU HDA audio but both DOOM and DUKE3D crash when loading the protected mode Dos4GW thing
If I dont use JEMMEX/HIMEMX then SBEMU doesnt detect my GPU HDA so no sound.
Interesting I don't see any posts from people confirming they have GPU HDA working (Nvidia or AMD) so maybe thats the problem I have
SBEMU compatibility reports list | Navigation threadI guess I am forced to use onboard sound or a sound card?
As for VSBHDA ( and - at least - old versions of SBEMU ): sound output via HDMI is deactivated in the HDA driver code. HDMI devices install their very own HDA device, and this device has only "digital" widgets. The driver code will simply skip such HDA devices. See source SC_INTHD.C, flag AC_WCAP_DIGITAL ( 2 occurances ):
if(node->type == AC_WID_AUD_OUT) {
if(node->wid_caps & AC_WCAP_DIGITAL)
return 0;
I haven't tried if HDMI would work if this "digital" filter is removed, because I have no HDMI monitor available.