Reply 140 of 143, by Benedikt
theelf wrote on 2025-07-02, 08:56:I have a 286, put the tandy nano sound card, download patches games from ftp.oldskool.org ... and nothing, silence, tested wi […]
I have a 286, put the tandy nano sound card, download patches games from ftp.oldskool.org ... and nothing, silence, tested with maniac mansion or zak same result
This patched games redirect to 0c0h or whatever need or spect the card? sorry im a little lost
I id a little code to send a beep to 0c0h but i get no beep on tandy nano
#include <dos.h>
int main() {
union REGS regs;
regs.h.ah = 0x00;
regs.h.al = 0x00;
int86(0xC0, ®s, ®s);
return 0;
}
Sorry, im totally lost how to get sound in patched games in this card in my 286 PC!
thanks!
Firstly, do the patched games contain the "out 0c0h,al" to "int 0c0h" substitution or do they merely skip the hardware detection?
Secondly, if they contain it, where is the interrupt handler? Has it been embedded into the game or is it in a separate TSR driver?
Thirdly, your test code frankly does not look like it does anything sensible.