| DOS386 14.12.2011, 08:26 |
SOUND support in DOS | Piotr | HDA (Developers) |
Someone dropped an interesting link into the Dr-DOS Wiki: --- |
| RayeR CZ, 14.12.2011, 12:31 @ DOS386 |
SOUND support in DOS | Piotr | HDA |
> Someone dropped an interesting link into the Dr-DOS Wiki: --- |
| RayeR CZ, 15.12.2011, 10:26 @ RayeR |
SOUND support in DOS | Piotr | HDA |
Unfortunatelly it doesn't work on HDA - not supported yet --- |
| Doug 15.12.2011, 16:19 @ DOS386 |
ICH4 and CD audio not working |
Talk about synchronicity! I was just about to post a question to the group asking if there is a utility similar to Laaca's LiveCD but for Intel chipsets. Amazing.... |
| Dex 16.12.2011, 01:16 @ Doug |
ICH4 and CD audio not working |
> Am i doing something duhhh that i'm just not realizing? Can anybody |
| Doug 16.12.2011, 03:06 @ Dex |
It worked! |
> I made a very simple dos command line cd player with built in ac97, you can |
| Doug 19.12.2011, 20:36 @ Doug |
Dex - source code? |
> If anyone want fasm code let me know. |
| Dex 20.12.2011, 04:02 @ Doug |
Dex - source code? |
> > If anyone want fasm code let me know. |
| Doug 20.12.2011, 18:04 @ Dex |
Many thanks.... |
> i included a strip ver called test.com for you to test (which i have |
| Marton 17.12.2011, 05:20 (edited by Marton, 17.12.2011, 05:41) @ DOS386 |
SOUND support in DOS | Piotr | HDA |
> Someone dropped an interesting link into the Dr-DOS Wiki: |
| RayeR CZ, 17.12.2011, 19:20 (edited by RayeR, 17.12.2011, 23:33) @ Marton |
SOUND support in DOS | Piotr | HDA |
> At that time, he sent me an Alpha version with HDA support up to ICH10. I --- |
| Marton 18.12.2011, 02:04 @ RayeR |
SOUND support in DOS | Piotr | HDA |
> Nice, I'm going to test it. It would be nice to see it integrated in |
| RayeR CZ, 18.12.2011, 05:35 @ Marton |
SOUND support in DOS | Piotr | HDA |
> Nice to see you got some results. I will let Piotr know about the forum. --- |
| RayeR CZ, 18.12.2011, 14:16 @ RayeR |
SOUND support in DOS | Piotr | HDA |
Oh yes, I idiot should do it at the beginning instead of messing with gcc version packages. When I changed -O2 to -Os in MAKEFILE.DJ it works fine. New gcc is much more aggressive in opt. I also faced the same problem in my code and was unable to fix it on source level so I applied selective optimization for that problematic function via __attribute__((optimize(0))). As my problem function is not time critical I don't care it's not optimized but all the rest of code is. It would be good if someone will isolate such problem function in judas and make it selective-unoptimized this way. --- |
| Rugxulo Usono, 18.12.2011, 18:12 @ RayeR |
SOUND support in DOS | Piotr | HDA |
> Oh yes, I idiot should do it at the beginning instead of messing with gcc |
| RayeR CZ, 18.12.2011, 19:08 @ Rugxulo |
SOUND support in DOS | Piotr | HDA |
> Indeed, sounds good, but even that attribute (IIRC) only works with GCC --- |
| Marton 19.12.2011, 22:14 @ RayeR |
SOUND support in DOS | Piotr | HDA |
I contacted Piotr but unfortunately he said he can't work on this project any further... So we're on our own. |
| RayeR CZ, 20.12.2011, 03:57 @ Marton |
SOUND support in DOS | Piotr | HDA |
> I contacted Piotr but unfortunately he said he can't work on this project --- |
| Marton 20.12.2011, 06:59 @ RayeR |
SOUND support in DOS | Piotr | HDA |
> Fortunatelly it seems to work as it is now. Khusraw confirmed it works on |
| Marton 22.12.2011, 15:41 @ Marton |
SOUND support in DOS | Piotr | HDA |
Direct quote from Piotr: |
| Rugxulo Usono, 23.12.2011, 07:51 @ Marton |
SOUND support in DOS | Piotr | HDA |
> So that's it. HDA support is now official, and it is on the GNU/GPL... |
| RayeR CZ, 23.12.2011, 19:01 @ Rugxulo |
SOUND support in DOS | Piotr | HDA |
> Okay, it's good news, but let's not be too overly happy. We don't want to --- |
| Rugxulo Usono, 24.12.2011, 22:18 @ RayeR |
SOUND support in DOS | Piotr | HDA |
> > Okay, it's good news, but let's not be too overly happy. We don't want |
| RayeR CZ, 25.12.2011, 04:39 @ Rugxulo |
SOUND support in DOS | Piotr | HDA |
> ... though I hold no expectations, esp. for new (annoyingly incompatible) --- |
| georgpotthast Germany, 25.12.2011, 20:45 @ RayeR |
SOUND support in DOS | Piotr | HDA |
Not all chips are made by Intel. I do not know for HDA but for the AC97 VIA and the other manufacturers made their versions a little bit different so an Intel driver would not run with their chips. |
| RayeR CZ, 25.12.2011, 21:00 @ georgpotthast |
SOUND support in DOS | Piotr | HDA |
> Not all chips are made by Intel. I do not know for HDA but for the AC97 VIA --- |
| georgpotthast Germany, 25.12.2011, 21:19 @ RayeR |
SOUND support in DOS | Piotr | HDA |
Yes, you can use codecs from different manufacturers but for the AC97 the programmer's interfaces also varied. As far as I learned that is also the case for HDA. |
| RayeR CZ, 25.12.2011, 22:51 @ georgpotthast |
SOUND support in DOS | Piotr | HDA |
> Yes, you can use codecs from different manufacturers but for the AC97 the --- |
| georgpotthast Germany, 26.12.2011, 08:19 @ RayeR |
SOUND support in DOS | Piotr | HDA |
The interface betweeen chipset and codec may be standard but that is not the interface you use to tell the chip to play your sound data. That interface differs for the chipsets. |
| Dex 26.12.2011, 17:57 @ RayeR |
SOUND support in DOS | Piotr | HDA |
> > Yes, you can use codecs from different manufacturers but for the AC97 |
| RayeR CZ, 27.12.2011, 01:54 @ Dex |
SOUND support in DOS | Piotr | HDA |
> georgpotthast(R) is right, i found the same problem when coding AC97 --- |
| Deniska 26.12.2011, 23:51 (edited by Deniska, 27.12.2011, 00:37) @ RayeR |
SOUND support in DOS | Piotr | HDA |
> Well, I added PCI IDs for intel 5 and 6 series, recompiled here: |
| Deniska 26.12.2011, 23:55 @ Deniska |
SOUND support in DOS | Piotr | HDA |
It is also interesting that Dell provides a DOS hardware testing program, which includes testing of the sound card and can produce very clean sounds. It is a pity that the code for their drivers is closed. |
| RayeR CZ, 27.12.2011, 01:44 @ Deniska |
SOUND support in DOS | Piotr | HDA |
> It is also interesting that Dell provides a DOS hardware testing program, --- |
| Rugxulo Usono, 27.12.2011, 21:39 @ RayeR |
SOUND support in DOS | Piotr | HDA |
> > ... though I hold no expectations, esp. for new (annoyingly |
| RayeR CZ, 28.12.2011, 03:27 @ Rugxulo |
SOUND support in DOS | Piotr | HDA |
> This is your (DJGPP) compile of Judas 2.10c, to be precise, and it --- |
| Marton 08.01.2012, 16:47 @ RayeR |
SOUND support in DOS | Piotr | HDA |
> Nice to hear it works, it was very easy to extend it. Maybe someone could |
| DOS386 15.01.2012, 04:25 @ RayeR |
SOUND support in DOS | Piotr | HDA |
> Well, I added PCI IDs for intel 5 and 6 series, recompiled here: --- |
| RayeR CZ, 16.01.2012, 00:08 @ DOS386 |
SOUND support in DOS | Piotr | HDA |
> COOL --- |
| DOS386 16.01.2012, 06:35 @ RayeR |
SOUND support in DOS | Piotr | HDA | WAW output broken |
> JP.exe has messed WAV playback also in version 2.09f as I tested (incorrect --- |
| RayeR CZ, 16.01.2012, 14:56 @ DOS386 |
SOUND support in DOS | Piotr | HDA | WAW output broken |
> > JP.exe has messed WAV playback also in version 2.09f as I tested --- |
| Zyzzle 01.02.2012, 01:50 @ RayeR |
SOUND support in DOS | Piotr | HDA | WAW output broken |
> > > JP.exe has messed WAV playback also in version 2.09f as I tested |
| RayeR CZ, 01.02.2012, 13:44 @ Zyzzle |
SOUND support in DOS | Piotr | HDA | WAW output broken |
> is now broken, and immediately exits with s SIGSERVE error in your new --- |
| Laaca Czech republic, 27.02.2012, 09:48 @ RayeR |
Judas in Freepascal |
I tried to link Judas library with my Freepascal units. I had problems with linking, than I solved it by changing by replacing different version of LIBGCC.A but although my unit compiles and is linked with Judas, it still does not work. It fails in initialization in judas_config function. --- |
| RayeR CZ, 02.03.2012, 10:33 @ Laaca |
Judas in Freepascal |
> I tried to link Judas library with my Freepascal units. I had problems with --- |
| Khusraw Bucharest, Romania, 02.03.2012, 20:50 (edited by Khusraw, 02.03.2012, 22:28) @ RayeR |
Judas in Freepascal |
> I compiled Judas in DJGPP v2.04, libs are available on DJ's FTP - package --- |
| Fabrizio 03.03.2013, 23:21 @ RayeR |
SOUND support in DOS | Piotr | HDA |
> My latest minor update 2.10d includes PCI ID for intel series 7 HDA. |
| TomCat 08.10.2017, 00:03 @ DOS386 |
SOUND support in DOS | Capturing PC speaker sound |
Hello guys, |
| Laaca Czech republic, 11.10.2017, 20:23 @ TomCat |
SOUND support in DOS | Capturing PC speaker sound |
Hello Tom! --- |
| TomCat 29.10.2017, 02:53 @ Laaca |
SOUND support in DOS | Capturing PC speaker sound |
Hi Laaca, |
| KormaX 27.10.2017, 23:44 @ TomCat |
SOUND support in DOS | Capturing PC speaker sound |
Hi! --- |
| KormaX 28.10.2017, 12:08 @ TomCat |
SOUND support in DOS | Capturing PC speaker sound |
Perhaps this is useful for you, this is my hardware according to PLAYWAVE.EXE (HX.DOS) --- |
| TomCat 29.10.2017, 02:56 @ KormaX |
SOUND support in DOS | Capturing PC speaker sound |
Hi KormaX, |
| KormaX 30.10.2017, 16:26 @ TomCat |
SOUND support in DOS | Capturing PC speaker sound |
Thank you :) It works. --- |
Thread view![[image]](http://jafile.com/uploads/dos386/judo209f.png)

, but i could follow the overall program flow.) And i would certainly leave in your authorship credit. ![[image]](http://rayer.ic.cz/350d/judas_player.png)