From e23e7206e58ef6f1c9d5f432d10e2e853926a2e2 Mon Sep 17 00:00:00 2001 From: Sjoerd van der Berg Date: Tue, 18 Nov 2003 22:17:25 +0000 Subject: [PATCH] removed the physical page read function Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1445 --- include/mem.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/mem.h b/include/mem.h index 2c1bc990..ad483275 100644 --- a/include/mem.h +++ b/include/mem.h @@ -128,7 +128,6 @@ void phys_writew(PhysPt addr,Bit16u val); void phys_writed(PhysPt addr,Bit32u val); /* These don't check for alignment, better be sure it's correct */ -Bit32u phys_page_readd(Bitu page,Bitu off); void MEM_BlockWrite(PhysPt pt,void * data,Bitu size); void MEM_BlockRead(PhysPt pt,void * data,Bitu size);