Up to now I thought there would be only color cards in use so it would be save to assume that the area B000-B7FF is unused.

An old test whether a monochrome or color card is installed is reading the BIOS equipment-flag at &H410:
def seg = 0
If (Peek(&H410) And &H30) <> &H30 Then 'color card using B800-BFFF - bits 4 and 5 are not set
Maybe your AGP card does not use the B800-BFFF area and you can use this test to determine which area is unused by the graphics card.
------------------
Leave a comment: