IBM XT BIOS switched from 01/10/86 version to 11/08/82.
This commit is contained in:
parent
b9da18252c
commit
409f9f42b3
2 changed files with 6 additions and 10 deletions
|
|
@ -41,8 +41,8 @@ However, this was targetted as businesses and was more successful than the origi
|
|||
|
||||
ROM files needed:
|
||||
|
||||
xt050986.0
|
||||
xt050986.1
|
||||
5000027.u19
|
||||
1501512.u18
|
||||
|
||||
|
||||
IBM AT (1984)
|
||||
|
|
|
|||
12
src/mem.c
12
src/mem.c
|
|
@ -326,14 +326,10 @@ int loadbios()
|
|||
f=romfopen("roms/ibmxt/xt.rom","rb");
|
||||
if (!f)
|
||||
{
|
||||
f=romfopen("roms/ibmxt/xt050986.0","rb");
|
||||
ff=romfopen("roms/ibmxt/xt050986.1","rb");
|
||||
if (!f || !ff) break;
|
||||
for (c=0x0000;c<0x10000;c+=2)
|
||||
{
|
||||
rom[c]=getc(f);
|
||||
rom[c+1]=getc(ff);
|
||||
}
|
||||
f = romfopen("roms/ibmxt/5000027.u19", "rb");
|
||||
ff = romfopen("roms/ibmxt/1501512.u18","rb");
|
||||
fread(rom, 0x8000, 1, f);
|
||||
fread(rom + 0x8000, 0x8000, 1, ff);
|
||||
fclose(ff);
|
||||
fclose(f);
|
||||
mem_load_xtide_bios();
|
||||
|
|
|
|||
Loading…
Reference in a new issue