Saturday, July 4, 2020

Down a rabbit-hole

Not really related to Unix, but emulation. The 86Box emulator (plus roms) contains a good ps/2 and ps/1 emulator and I've been doing some reading on what different specs were etc.

I wanted to put some links here for future refernce:

Chart of PS/1 specs from https://www.old-computers.com/museum/doc.asp?c=1274
______
There were later many different PS/1 Models released.
Here is a quite complete list of them with main technical differences:
ModelRAM (max.)Hard-diskCPUVideo
2011 n01512 Ko (1MB)none286 at 10MHzVGA
2011 n341MB30MB286 at 10MHzVGA
2011 n411MB40MB286 at 10MHzVGA
2011 n422MB (6MB)40MB386sx at 16MHzVGA
2121 2822MB (6MB)80MB386sx at 16MHzVGA
2121 6422MB (6MB)40MB386sx at 20MHzVGA
2121 6822MB (6MB)80MB386sx at 20MHzVGA
2123 E41 Pro2MB (15MB)40MB386sx at 20MHzVGA
2123 E81 Pro2MB (15MB)80MB386sx at 20MHzVGA
2123 E31 Pro2MB (15MB)130MB386sx at 20MHzVGA
2133 1112MB (15MB)85MB386sx at 25MHzVGA
2133 7112MB (15MB)85MB386sx at 25MHzVGA
2133 8114MB (15MB)85MB386sx at 25MHzVGA
2133 9112MB (15MB)85MB386sx at 25MHzVGA
2133 1144MB (15MB)170MB386sx at 25MHzsVGA
2133 1444MB (32MB)170MB486sx at 20MHzsVGA
2133 1514MB (32MB)85MB486sx at 25MHzsVGA
2133 1544MB (32MB)170MB486sx at 25MHzsVGA
2133 1744MB (32MB)170MB486sx at 33MHzsVGA
2133 4512MB (32MB)85MB486sx at 25MHzsVGA
2133 4614MB (32MB)85MB486sx at 33MHzsVGA
2133 5514MB (32MB)130MB486sx at 25MHzsVGA
2133 5714MB (64MB)130MB486dx at 33MHzsVGA
2155 4714MB (64MB)85MB486dx at 33MHzsVGA
2155 4744MB (64MB)130MB486dx at 33MHzsVGA
2155 4834MB (64MB)130MB486dx2 at 50MHzsVGA
2155 5824MB (64MB)170MB486dx2 at 50MHzsVGA
2155 5934MB (64MB)253MB486dx2 at 66MHzsVGA
2168 4522MB (32MB)85MB486sx at 25MHsVGA
2168 4634MB (64MB)130486sx at 33MHzsVGA
2168 4734MB (64MB)130486dx at 33MHzsVGA
2168 4934MB (64MB)130486dx2 at 66MHzsVGA
2168 5844MB (64MB)253486dx2 at 50MHzsVGA
2168 5944MB (64MB)253486dx2 at 66MHzsVGA
Source : Silicium.org

https://stason.org/TULARC/pc/motherboards/I/IBM-CORPORATION-486-PS-1-TYPE-2133-2155-2168-TYPE.html

https://github.com/86Box/86Box/issues/886

PS/1 Models Spreadsheet on google docs: https://docs.google.com/spreadsheets/d/1gzi99Hd35Doq-tKUGpZZoOIzkGtt43o8dLqlaX-8sYw/edit#gid=969214990

http://www.ibm-pc.org/diagnostic/ibm/ps2/ps2files/index.htm

No comments:

automating zfs mounts -a quick and very dirty script

 #!/bin/sh for x in obj xsrc src pkgsrc pkgsrc/distfiles pkgsrc/packages pkg         do zfs create ext/$x zfs set mountpoint=/usr/$x ext/$x ...