diff options
Diffstat (limited to 'objects/AlphaTLB.mpy')
-rw-r--r-- | objects/AlphaTLB.mpy | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/objects/AlphaTLB.mpy b/objects/AlphaTLB.mpy new file mode 100644 index 000000000..571b98374 --- /dev/null +++ b/objects/AlphaTLB.mpy @@ -0,0 +1,9 @@ +simobj AlphaTLB(SimObject): + abstract = True + size = Param.Int("TLB size") + +simobj AlphaDTB(AlphaTLB): + size = 64 + +simobj AlphaITB(AlphaTLB): + size = 48 |