blog:486_advantech_pca6145

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
blog:486_advantech_pca6145 [2024/04/13 08:45] johnblog:486_advantech_pca6145 [2024/05/10 17:25] (current) – [Results] john
Line 166: Line 166:
 ===== Software Setup ===== ===== Software Setup =====
  
-=== DOS & Drivers ===+==== DOS & Drivers ====
  
 This is a fairly standard setup, there isn't a need for any particular wacky drivers or fancy memory setups. A basic configuration to allow boot in HIMEM + EMM386 (XMS + EMS) and a secondary one to boot with only HIMEM (XMS only) is sufficient for all of the games installed so far. This is a fairly standard setup, there isn't a need for any particular wacky drivers or fancy memory setups. A basic configuration to allow boot in HIMEM + EMM386 (XMS + EMS) and a secondary one to boot with only HIMEM (XMS only) is sufficient for all of the games installed so far.
Line 192: Line 192:
 fileshigh=40 fileshigh=40
 buffershigh=20 buffershigh=20
-rem dosdata=high 
 stacks=9,256 stacks=9,256
 lastdrive=i lastdrive=i
Line 200: Line 199:
 **Autoexec.bat** **Autoexec.bat**
 <code> <code>
 +@ECHO OFF
 +SET PROMPT=$P$G
 +SET TEMP=C:\TMP
 +SET TMP=%TEMP%
 +SET PATH=C:\DOS;C:\DRIVERS\TLBMM;C:\TOOLS\4DOS;C:\DRIVERS\UNISOUND
 +SET PATH=%PATH%;C:\DRIVERS\CTMOUSE;C:\DRIVERS\MIDI;C:\TOOLS\VOLKOV
 +SET PATH=%PATH%;C:\TOOLS\MTCP;C:\TOOLS\SHSUCD;C:\TOOLS\ISOMOUNT
 +SET PATH=%PATH%;C:\DRIVERS\VESA;C:\DRIVERS\JEMM;C:\TOOLS\BIN
 +
 +REM =============== Disk cache ====================
 +LOADHIGH LBACACHE
 +
 +REM =============== Network Stack =================
 +LOADHIGH C:\DRIVERS\RTL8019\PNPPD.COM
 +SET MTCPCFG=C:\TOOLS\MTCP\MTCP.CFG
 +
 +REM =============== Sound Config ==================
 +SET BLASTER=A220 I7 D1 T4 P330
 +CALL UNISOUND.BAT
 +
 +REM =============== Mouse Driver ==================
 +CT20 /P /B
 +
 +REM =============== 4DOS ==========================
 +LOADHIGH C:\TOOLS\4DOS\KSTACK.COM
 </code> </code>
  
-=== Game Testing ====+==== Sound Software ====
  
-=== Video BIOS Bugs ===+The ESS1864F sound chip on the ISA sound card doesn't need any special drivers loaded and works in the following modes: 
 + 
 +   * Adlib - FM/OPL2 music/effects, no digital effects 
 +   * Soundblaster 1 - FM/OPL2 music/effects, mono 8bit digital effects 
 +   * Soundblaster Pro 2 - FM/OPL3 music/effects, stereo 8bit digital effects 
 +   * ESS native mode - FM/ESSFM music/effects //(1)//, stereo 16bit digital effects //(2)// 
 +   * MPU-401 - UART mode MIDI interface //(3)// 
 + 
 +By having support for Adlib, Soundblaster and Soundblaster Pro 2, this chip covers almost the entire range of DOS games. The only titles that would not be supported are anything that predates Adlib; for example Covox or Tandy audio. It may be possible to add a discrete external Covox or Tandy audio adapter to the parallel port in the future. 
 + 
 +//(1) The enhanced ESS FM mode sounds brighter and allow for more simultaneous FM parts than regular OPL3 playback would allow. Not supported in all games.// 
 + 
 +//(2) Native support for the ESS 16bit digital audio is not very common in DOS titles, but is supported in Windows.// 
 + 
 +//(3) Intelligent mode MPU-401 MIDI is not supported as standard, but can be implemented using the SoftMPU utility.// 
 + 
 +The lack of a dedicated 16bit Soundblaster mode is not really that much of a drawback; there wasn't a lot of games which had native 16bit digital audio, with very few titles using actual 16bit samples. 
 + 
 +The ESS1868F can be initialised with the excellent //unisound// utility, which doesn't load any drivers or consume any memory: 
 + 
 +   * https://www.vogons.org/viewtopic.php?t=72553 
 +   * {{ :blog:486:unisound081b.zip |}} (local copy) 
 + 
 +I have a simple batch file which runs and configures //unisound// in my **Autoexec.bat** file: 
 + 
 +<code> 
 +SET BLASTER=A220 I7 D1 T4 P330 
 +UNISOUND.COM /C2 /V75 /VF75 /VW75 /VC75 
 +</code> 
 + 
 +Where //C2// is the second Plug & Play ISA card in the system (the network card is the other), and all the others are simply volume controls (set everything to 75%). 
 +==== MIDI Software ==== 
 + 
 +Since the MT32Pi can operate in MT-32 or General MIDI mode, I used the mt32pi-control software to control it from the DOS command prompt. 
 + 
 +   * https://github.com/gmcn42/mt32-pi-control 
 + 
 +I also wrote a couple of simple batch file wrappers to automate the various mode changes: 
 + 
 +**MIDI_MT.BAT** 
 +<code> 
 +rem ==== Sets the device to MT-32 (rev 0) mode ==== 
 +MT32-PI.EXE -v -m --mt32-reset -b old 
 +</code> 
 + 
 +**MIDI_MTN.BAT** 
 +<code> 
 +rem ==== Sets the device to MT-32 (rev 1) ==== 
 +MT32-PI.EXE -v -m --mt32-reset -b new 
 +</code> 
 + 
 +**MIDI_CM.BAT** 
 +<code> 
 +rem ==== Sets the device to CM-32L mode ==== 
 +MT32-PI.EXE -v -m --mt32-reset -b cm32l 
 +</code> 
 + 
 +**MIDI_GM.BAT** 
 +<code> 
 +rem ==== Sets the device to General MIDI/Fluidsynth mode ==== 
 +rem ==== Chooses soundfont number 0 ==== 
 +MT32-PI.EXE -v -g --gm-reset -s 0 
 +</code> 
 + 
 +=== SoftMPU === 
 + 
 +The MPU-401 MIDI port on the ESS1868F card is a simple UART implementation - it works with many later games without issue, but a lot of earlier titles (late 1980's and the first couple of years of the 1990's) expected an //Intelligent mode// card, like the Roland MPU-IPC, and will ordinarily refuse to initialise music. 
 + 
 +Fortunately the //SoftMPU// utility can work on the ESS card, and implements an intelligent mode MIDI interface via software. 
 + 
 +   * https://bjt42.github.io/softmpu/ 
 +   * {{ :blog:486:softmpu-1.91.zip |}} (local copy) 
 + 
 +I wrote a batch wrapper around softmpu that also works on Dosbox, so I can add this entry before any games expecting an intelligent mode MIDI interface and it will set up the right environment, regardless of whether I am running the game in an emulated environment, or in my real hardware. 
 + 
 +With the ESS card, you must configure SoftMPU to use the same MPU base address, Soundblaster base address and Soundblaster interrupt number that you configured in the SET BLASTER line and passed to unisound: 
 + 
 +**Softmpu.bat** 
 +<code> 
 +@ECHO OFF 
 +SET DOSBOXDRIVE=Z: 
 + 
 +IF EXIST %DOSBOXDRIVE%\COMMAND.COM GOTO DOSBOX 
 +GOTO MPU 
 + 
 +:MPU 
 +LOADHIGH C:\DRIVERS\MIDI\SOFTMPU.EXE /MPU:330 /SB:220 /IRQ:7 
 +GOTO EXIT 
 + 
 +:DOSBOX 
 +ECHO SOFTMPU not supported in Dosbox 
 +ECHO Configuring MPU-401 to intelligent instead... 
 +%DOSBOXDRIVE%\CONFIG -SET mpu401=intelligent 
 +GOTO EXIT 
 + 
 +:EXIT 
 +</code> 
 + 
 +It is important to note that SoftMPU can only run when EMM386 (or QEMM) is loaded. It does not work without it. 
 + 
 +==== Virtual CD-ROM / ISO Mounting ==== 
 + 
 +A lot of later DOS games came on CD-ROM and it is often convenient to keep them in an ISO format on the drive (especially since I don't have a CD-ROM drive with this system!). 
 + 
 +Fortunately there is a virtual CD-ROM driver available which can mount ISO files as a CD drive: 
 + 
 +   * http://adoxa.altervista.org/shsucdx/ 
 + 
 +Since I use a lot of games interchangeably between Dosbox and this real system, I wrote a couple of batch files which determine whether to use the Dosbox //imgmount// command, or the //shsucdhd and shsucdx// commands on the real system: 
 + 
 +**Isomount.bat** 
 +<code> 
 +@ECHO OFF 
 +SET ISODIR=D:\ISO 
 +SET ISODRIVE=E 
 +SET DOSBOXDRIVE=Z: 
 +SET SHSPATH=C:\TOOLS\SHSUCD 
 + 
 +IF EXIST %ISODIR%\%1 GOTO CHECKBOX 
 +GOTO MISSING 
 + 
 +:CHECKBOX 
 +REM -= Mount an ISO =- 
 +@echo Mounting ISO file %ISODIR%\%1 as %ISODRIVE% 
 +IF EXIST %DOSBOXDRIVE%\COMMAND.COM GOTO DOSBOX 
 +GOTO REALBOX 
 + 
 +:REALBOX 
 +REM -= Mount an ISO using shsucdhd/shsucdx =- 
 +@echo Calling SHSUCDHD 
 +%SHSPATH%\SHSUCDHD /F:%ISODIR%\%1 /Q 
 +@echo Calling SHSUCDX 
 +%SHSPATH%\SHSUCDX /D:SHSU-CDH,%ISODRIVE% /Q 
 +GOTO END 
 + 
 +:DOSBOX 
 +REM -= Mount an ISO using Dosbox imgmount =- 
 +REM @echo Calling Dosbox imgmount 
 +%DOSBOXDRIVE%\imgmount %ISODRIVE%: %ISODIR%\%1 -t iso -fs iso 
 +GOTO END 
 + 
 +:MISSING 
 +REM -= ISO is missing =- 
 +@echo Warning! The source ISO %ISODIR%\%1 is missing 
 +@echo =============================================== 
 +@echo You must call this tool with the name of an ISO file 
 +@echo which is available in %ISODIR% 
 +@echo e.g. ISOMOUNT.BAT TENTACLE.ISO 
 +GOTO END 
 + 
 +:END 
 +REM -= End of ISO mount wrapper =- 
 +</code> 
 + 
 +**Isoumnt.bat** 
 +<code> 
 +@ECHO OFF 
 +SET ISODIR=D:\ISO 
 +SET ISODRIVE=E 
 +SET DOSBOXDRIVE=Z: 
 +SET SHSPATH=C:\TOOLS\SHSUCD 
 + 
 +:CHECKBOX 
 +REM -= Unmount an ISO =- 
 +@echo Unmounting ISO file on %ISODRIVE% 
 +IF EXIST %DOSBOXDRIVE%\COMMAND.COM GOTO DOSBOX 
 +GOTO REALBOX 
 + 
 +:REALBOX 
 +REM -= Unmount an ISO using shsucdhd/shsucdx =- 
 +@echo Calling SHSUCDHD to unload 
 +%SHSPATH%\SHSUCDHD /U /Q 
 +@echo Calling SHSUCDX to unload 
 +%SHSPATH%\SHSUCDX /U /Q 
 +GOTO END 
 + 
 +:DOSBOX 
 +REM -= Unmount an ISO using Dosbox imgmount =- 
 +@echo Calling Dosbox imgmount to unload 
 +%DOSBOXDRIVE%\imgmount -u %ISODRIVE%: 
 +GOTO END 
 + 
 +:END 
 +REM -= End of ISO mount wrapper =- 
 +</code> 
 + 
 +It assumes all of your ISO image files are stored in **D:\ISO** (adjust the file to suit if otherwise). You call the batch file as follows: 
 + 
 +<code> 
 +ISOMOUNT.BAT GAME.ISO 
 +</code> 
 + 
 +... and to unmount the drive and free up memory: 
 + 
 +<code> 
 +ISOUMNT.BAT 
 +</code> 
 + 
 +Since it is mounting ISO image files, CD audio is //not// supported. That isn't a huge issue in //most// cases when games have alternative soundtracks. Though be warned - some later CD titles //only// have CD audio music. I have highlighted any of these in my game testing below. 
 +==== Game Testing ===== 
 + 
 +==== Video BIOS Bugs ====
  
 The C&T 65550 VESA Local Bus VGA that is embedded in the 486 single board computer is a later video card with a VESA 2.0 BIOS and unfortunately has had the 8x14 VGA font removed. The C&T 65550 VESA Local Bus VGA that is embedded in the 486 single board computer is a later video card with a VESA 2.0 BIOS and unfortunately has had the 8x14 VGA font removed.
Line 224: Line 449:
  
 {{:blog:486:img_20240412_205738_1200_x_900_pixel_.jpg?400|}} {{:blog:486:img_20240412_210709_1200_x_900_pixel_.jpg?400|}} {{:blog:486:img_20240412_205738_1200_x_900_pixel_.jpg?400|}} {{:blog:486:img_20240412_210709_1200_x_900_pixel_.jpg?400|}}
 +
 +===== Sound Card Testing =====
 +
 +Whilst the ESS1868 soundcard worked in most titles, there was a reasonable number where the game simply wouldn't start, would lock up, or didn't work correctly; including some quite popular titles.
 +
 +I tried several more sound cards, the results of which can be seen below:
 +
 +^ Image                       | {{:blog:486:img20210628125242.jpg?200}}                                                                                                                                                                                                 | {{:blog:486:img20240508202148.jpg?200}}               | {{:blog:486:ymf719.jpg?200}}                                                                                                                                                                                                                                                          | {{:blog:486:ymf715.jpg?200}}                                                                        |
 +^ Model                       | Board is labelled as 'Binaura 3D'                                                                                                                                                                                                       | Unknown                                               | Addonics                                                                                                                                                                                                                                                                              | Addonics                                                                                            |
 +^ Chip                        | **ESS-1868F** (line-out only)                                                                                                                                                                                                           | **ESS-1868F** (with stereo amp IC)                    | **YMF-719E-S**                                                                                                                                                                                                                                                                        | **YMF-718S**                                                                                        |
 +^ General Features            | ESS-FM, Wavetable header, MPU401, SB/SB Pro support.                                                                                                                                                                                    | ESS-FM, Wavetable header, MPU401, SB/SB Pro support.  | Yamaha OPL3, Wavetable header, MP401, SB/SB Pro support, bass/treble, 3D effect.                                                                                                                                                                                                      | Yamaha OPL3, Wavetable header, MP401, SB/SB Pro support, bass/treble, 3D effect (via QSound chip).  |
 +^ Good Points                 | Quiet, reasonable SB/SB Pro compatibility. No loadable drivers needed.                                                                                                                                                                  | Same as line-out only version.                        | No loadable drivers needed. More games work in SB/SB Pro mode than with the ESS cards. Tyrian, Tyrian 2000, Dune CD, Flashback all working. Much fuller sound with the tone and 3D effect adjustments in the onboard mixer. Ringworld plays back music using SoftMPU with this card.  |                                                                                                     |
 +^ Bad Points                  | Tyrian and Tyrian 2000 have missing digital audio. Dune CD locks up when playing digital audio. Flashback won't work in Soundblaster mode. Privateer has no digital audio. SoftMPU won't work with Ringworld and several other titles.  | Same as line-out only version.                        | Jill of the Jungle locks up. Space Quest 4 won't work in dual 'Roland + CMS Soundblaster' mode. Digital audio playback in //some// titles has pronounced clicking, especially during streamed audio/music (e.g. speech).                                                              | Exactly the same as the YMF-719. Perhaps a //tiny// bit less clicking.                              |
 +|                             ^ Games working / non-working                                                                                                                                                                                                             ^ Games working / non-working                           ^ Games working / non-working                                                                                                                                                                                                                                                           ^ Games working / non-working                                                                         ^
 +^ Adlib games                 | 27 / 2                                                                                                                                                                                                                                  | 27 / 2                                                |                                                                                                                                                                                                                                                                                                                                                                                           |
 +^ Soundblaster 1.0/2.0 games  | 82 / 6                                                                                                                                                                                                                                  | 82 / 6                                                |                                                                                                                                                                                                                                                                                                                                                                                           |
 +^ Soundblaster Pro games      | 55 / 2                                                                                                                                                                                                                                  | 55 / 2                                                |                                                                                                                                                                                                                                                                                                                                                                                           |
 +^ MIDI (GM) games             | 42 / 9                                                                                                                                                                                                                                  | 42 / 9                                                |                                                                                                                                                                                                                                                                                                                                                                                           |
 +^ MIDI (MT-32) games          | 75 / 14                                                                                                                                                                                                                                 | 75 / 14                                                                                                                                                                                                                                                                                                                                                                                                                                         |
 +
 +For the purposes of testing, I counted games as //working// if the game started and was playable and made recognisable sounds and music using the configured audio device. If the audio was noisy, crackly, or clicked, but was still producing the overall sound which was intended, then it was considered //working//. If there was no audio using that option, or the game crashed, refused to launch or locked up using that audio device, then it was considered //not working//.
 +
 +In addition, regardless of sound card, the following games won't work with SoftMPU:
 +
 +   * Gateway
 +   * Gateway II - Homeworld
 +   * Superhero League of Hoboken
 +
 +The following games don't produce any digital audio:
 +
 +   * Wing Commander Privateer
 +
 +----
 +
 +===== Benchmarks =====
 +
 +No retro PC build is complete without a suite of benchmarks, and here they are below.
 +
 +==== Configuration 1 ====
 +
 +   * Am5x86 133MHz, 16KB WB L1 cache (4 x 33MHz)
 +   * 128KB WB L2 cache
 +   * BIOS options as below:
 +
 +
 +==== Configuration 2 ====
 +
 +   * Cyrix 5x86 100MHz, 16KB WB L1 cache (3 x 33MHz)
 +   * 128KB WB L2 cache
 +   * BIOS options as above
 +   * No Cyrix optimisations enabled (out of box configuration)
 +
 +==== Configuration 3 ====
 +
 +   * Cyrix 5x86 100MHz, 16KB WB L1 cache (3 x 33MHz)
 +   * BIOS options as above
 +   * Cyrix optimisations enabled: //5x86.exe /btb_en=on /rtsk_en=on /lsser=off /loop_en=off /bwrt=on /fp_fast=on//
 +
 +==== Configuration 4 ====
 +
 +   * Cyrix 5x86 120MHz, 16KB WB L1 cache (3 x 40MHz)
 +   * Overclocked
 +   * BIOS options as above
 +   * Cyrix optimisations not enabled (out of box oncifiguration)
 +
 +==== Configuration 5 ====
 +
 +   * Cyrix 5x86 120MHz, 16KB WB L1 cache (3 x 40MHz)
 +   * Overclocked
 +   * BIOS options as above
 +   * Cyrix optimisations enabled: //5x86.exe /btb_en=on /rtsk_en=on /lsser=off /loop_en=off /bwrt=on /fp_fast=on//
 +
 +
 +==== Results ====
 +
 +^                                          ^ Configuration 1  ^ Configuration 2  ^ Configuration 3           ^ Configuration 4  ^ Configuration 5           ^
 +|                                          | AMD Am5x86 133   | Cyrix 5x86 100   | Cyrix 5x86 100 (optimal)  | Cyrix 5x86 120   | Cyrix 5x86 120 (optimal)  |
 +|                                          | 4 x 33MHz        | 3 x 33MHz        | 3 x 33MHz                 | 3 x 40MHz        | 3 x 40MHz                 |
 +^ Test            ^ Metric                                    |                  |                                            |                           |
 +^ Norton          ^ CPU Score                | 288.2            | 264.2            | 317                       | 317              | 380.4                     |
 +^ Comptest        ^ CPU Cache throughput     | 168946 KB/Sec    | 190909 KB/sec    | 192837 KB/Sec             | 230011 KB/Sec    | 230011 KB/Sec             |
 +^ Comptest        ^ RAM throughput           | 8804 KB/Sec      | 9320 KB/Sec      | 9320 KB/Sec               | 10524 KB/Sec     | 10523 KB/Sec              |
 +^ Comptest        ^ Extended RAM throughput  | 7066 KB/Sec      | 7631 KB/Sec      | 7206 KB/Sec               | 8188 KB/Sec      | 7957 KB/Sec               |
 +^ Comptest        ^ Dhrystones               | 66195            | 64570            | 64949                     | 77351            | 78273                     |
 +^ Comptest        ^ KWhetstones              | 42857            | 35099            | 35570                     | 56756            | 65625                     |
 +^ Comptest        ^ MegaFLOPS                | 3.603            | 3.375            | 3.484                     | 4.110            | 5.182                     |
 +^ Comptest        ^ Disk throughput          | 1618 KB/Sec      | 1709 KB/Sec      | 1684 KB/Sec               | 2032 KB/Sec      | 2024 KB/Sec               |
 +^ Landmark        ^ CPU of emulated PC/AT    | 633 MHz          | 507 MHz          | 804 MHz                   | 609 MHz          | 964 MHz                   |
 +^ Landmark        ^ FPU of emulated PC/AT    | 908 MHz          | 946 MHz          | 955 MHz                   | 1136 MHz         | 1369 MHz                  |
 +^ Landmark        ^ Video                    | 6597 chr/sec     | 6597 chr/sec     | 6597 chr/sec              | 6597 chr/sec     | 6597 chr/sec              |
 +^ Speedsys        ^ CPU Performance          | 49.88            | 47.09            | 56.49                     | 56.51            | 67.78                     |
 +^ Speedsys        ^ L1 Cache                 | 109.6 MB/Sec     | 137.9 MB/Sec     | 135.9 MB/Sec              | 162.7 MB/Sec     | 160.4 MB/Sec              |
 +^ Speedsys        ^ L2 Cache                 | 36.0 MB/Sec      | 40.3 MB/Sec      | 40.2 MB/Sec               | 52.4 MB/Sec      | 52.4 MB/Sec               |
 +^ Speedsys        ^ RAM Throughput           | 22.6 MB/Sec      | 23.1 MB/Sec      | 23.1 MB/Sec               | 24.3 MB/Sec      | 24.3 MB/Sec               |
 +^ Speedsys        ^ RAM Bandwidth            | 39.9 MB/Sec      | 39.9 MB/Sec      | 39.9 MB/Sec               | 54.24 MB/Sec     | 54.24 MB/Sec              |
 +^ Wolfenstein 3D  ^ FPS                      | 81.5 fps         | 82.1 fps         | 82.3 fps                  | 90.9 fps         | 91.4 fps                  |
 +^ DOOM            ^ Low Detail               | 95.2 fps         | 88.8 fps         | 89.9 fps                  | 107.2 fps        | 108.6 fps                 |
 +^ DOOM            ^ High Detail              | 38.1 fps         | 34.4 fps         | 35.2 fps                  | 40.0 fps         | 40.8 fps                  |
 +^ Quake           ^ 320x240                  | 11.1 fps         | 10.1 fps         | 10.9 fps                  | 12.1 fps         | **ERROR - page fault**    |
 +^ Quake           ^ 360x480                  | 5.3 fps          | 4.8 fps          | 5.2 fps                   | 5.7 fps          | **ERROR - page fault**    |
 +^ Quake           ^ 640x480                  | //Unsupported//  | //Unsupported//  | //Unsupported//           | //Unsupported//  | //Unsupported//           |
 +^ 3D Bench        ^ 1.0c                     | 67.3 fps         | 65.5 fps         | 67.7 fps                  | 69.7 fps         | 71.8 fps                  |
 +^ PC Player       ^ Low Res                  | 14.3 fps         | 13.4 fps         | 13.4 fps                  | 15.8 fps         | 15.9 fps                  |
 +^ PC Player       ^ High Res                 | 6.4 fps          | 5.3 fps          | 5.4 fps                   | 6.1 fps          | 6.3 fps                   |
 +
 +   * Doom FPS is calculated as: (35*2134) / //realticks//
 +
 +It appears that the Cyrix chip running in 40MHz bus mode is a really strong performer; outclassing the Am5x86 despite the higher clock speed of the AMD processor. Even at 100MHz (3x 33MHz), the lower clocked Cyrix processor is within 10% of the performance of the AMD.
 +
 +The performance differential isn't too surprising considering the AMD is effectively a clock-quadrupled 486DX, whereas the Cyrix design is a cut-down and backported core from the much-maligned (but actually very impressive, if you discount the FPU) Cyrix 6x86, so it's much closer to a Pentium class processor than the AMD.
  • blog/486_advantech_pca6145.1712994301.txt.gz
  • Last modified: 2024/04/13 08:45
  • by john