From 5cd2ec2005a75fd4241d3748bd1d2d50824613aa Mon Sep 17 00:00:00 2001 From: Sjoerd van der Berg Date: Thu, 12 Feb 2004 21:39:27 +0000 Subject: [PATCH] Use rom compatbile memory write Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1679 --- src/ints/int10.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ints/int10.cpp b/src/ints/int10.cpp index 6bcc2302..0e5bc636 100644 --- a/src/ints/int10.cpp +++ b/src/ints/int10.cpp @@ -437,7 +437,7 @@ static void SetupTandyBios(void) { 0x64, 0x2e, 0x0d, 0x0a, 0x61, 0x6e, 0x64, 0x20, 0x54, 0x61, 0x6e, 0x64, 0x79 }; Bitu i; - real_writeb(0xffff,0xe,0xff); + phys_writeb(0xffffe,0xff); for(i=0;i<130;i++) { phys_writeb(0xf0000+i+0xc000, TandyConfig[i]); }