Reset the maxvirtaddr to use maxphyaddr just so we don't forget.

This commit is contained in:
Mike Auty
2017-05-01 14:35:22 +01:00
parent 44d8af70e0
commit de8508a8bb
+1 -1
View File
@@ -30,7 +30,7 @@ class Intel(interfaces.layers.TranslationLayerInterface):
_bits_per_register = 32
# NOTE: _maxphyaddr is MAXPHYADDR as defined in the Intel specs *NOT* the maximum physical address
_maxphyaddr = 32
_maxvirtaddr = 32
_maxvirtaddr = _maxphyaddr
_structure = [('page directory', 10, False),
('page table', 10, True)]