diff options
author | George Sapountzis <gsap7@yahoo.gr> | 2006-11-20 15:09:41 +0200 |
---|---|---|
committer | George Sapountzis <gsap7@yahoo.gr> | 2007-01-28 01:24:21 +0200 |
commit | c9a9ea5ebd1c27881c1fac19842cfa3af55c126e (patch) | |
tree | 932242627308bbefcf8ee59cde16a512eecd5f97 /src/atibank.h | |
parent | 383e963e275d351ea3631c352f5795340162d69f (diff) |
Banked memory is no longer needed.
- (pATI->BankInfo.BankSize = 0) in all cases, cull pATI->BankInfo
- only keep the minimal pATIHW.SetBank interface for save/restore
- clean ATISwap() a little, (NewHW.crtc != ATI_CRTC_VGA)
- (UseSmallApertures == TRUE) <=> pATI->VGAAdapter
Diffstat (limited to 'src/atibank.h')
-rw-r--r-- | src/atibank.h | 31 |
1 files changed, 1 insertions, 30 deletions
diff --git a/src/atibank.h b/src/atibank.h index d50aa68..d56da68 100644 --- a/src/atibank.h +++ b/src/atibank.h @@ -25,37 +25,9 @@ #include "atipriv.h" -#include "mibank.h" - #ifndef AVOID_CPIO /* - * Banking definitions. - */ - -/* - * Bank selection functions for VGA Wonder V4 and V5 adapters. - */ -extern miBankProc ATIV4V5SetRead, - ATIV4V5SetWrite; - -/* - * Bank selection functions for 28800-x, 68800-x and 88800 based adapters. - */ -extern miBankProc ATIx8800SetRead, - ATIx8800SetWrite, - ATIx8800SetReadWrite; - -/* - * Bank selection functions used to simulate a banked VGA aperture with a - * Mach64's small dual paged apertures. There are two sets of these: one for - * packed modes, and one for planar modes. - */ -extern miBankProc ATIMach64SetReadPacked, - ATIMach64SetWritePacked, - ATIMach64SetReadWritePacked; - -/* * The CRT save/restore code also needs a separate banking interface that can * used before ATIScreenInit() is called. */ @@ -63,8 +35,7 @@ extern miBankProc ATIMach64SetReadPacked, typedef void ATIBankProc(ATIPtr, unsigned int); typedef ATIBankProc *ATIBankProcPtr; -extern ATIBankProc ATIV4V5SetBank, - ATIx8800SetBank, +extern ATIBankProc ATIx8800SetBank, ATIMach64SetBankPacked, ATIMach64SetBankPlanar; |