pc_98_bios_rom_top__aqigt 1.0.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of pc_98_bios_rom_top__aqigt might be problematic. Click here for more details.

Files changed (2) hide show
  1. package/README.md +22 -0
  2. package/package.json +14 -0
package/README.md ADDED
@@ -0,0 +1,22 @@
1
+ Pc 98 Bios Rom !!TOP!!
2
+
3
+
4
+ Pc 98 Bios Rom ->>->>->> [https://urlgoal.com/2tgQO8](https://urlgoal.com/2tgQO8)
5
+
6
+
7
+ ```
8
+
9
+
10
+ i do not believe it is safe to use the standard scsi bios with the pc-9821-m if you are using a pc-9821 bios rom. using the pc-98 bios rom (from team-kodi) on the pc-9821-m will not work because it will be using the original bios rom instead of the pc-98 bios rom, which isn't quite as compatible. this includes the bios files provided by team-kodi with the libretro cores like gens/rom-pc98/beetle-psx.
11
+
12
+
13
+ the pc-98 bios is a fairly straightforward implementation of bios to this day, even to this day. the bios is based on using a single data segment with the constant values of 0xff0h, 0xd8bh, 0xff0h, 0xc000h, 0xff0h in the first four bytes of the segment. the first byte is set to 0xff0h for 896 kib of memory (to make it 128 kib for the first segment) and then the values of 0xff0h, 0xd8bh, 0xff0h, 0xc000h are copied over, or at least their values are copied from the gdt table. the remaining 256 kib of memory is used as a program segment, with the first byte of 0xff0h and the remaining bytes set to 0xff0h. the only other instructions in the code are int 0x16, ret, int 0x20, and end.
14
+
15
+
16
+ a lot of special-purpose bios code is implemented to test for particular values of bits in the instruction pointer and memory to test for an x86 cpu in protected mode and to check for compatibility with the bios and the hardware.
17
+
18
+
19
+ because the bios is quite simple and uses a single data segment, the bios can be rewritten much more easily to introduce new features than a more complex bios that can use a single segment and multiple segments, especially since the first protected mode pc bios was released in early 1990. the bios remains the only widely available source of protected mode code, but most modern operating systems provide their own set of protected mode routines, and those can be used to emulate all of the necessary protected mode instructions. 84d34552a1
20
+
21
+
22
+ ```
package/package.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "pc_98_bios_rom_top__aqigt",
3
+ "version": "1.0.0",
4
+ "description": "pc 98 bios rom !!top!!",
5
+ "main": "",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "keywords": [
10
+ "pc 98 bios rom !!top!!"
11
+ ],
12
+ "author": "",
13
+ "license": "ISC"
14
+ }