From 292a523718c20d5e6c16a3a7e7022422b930862a Mon Sep 17 00:00:00 2001 From: Daniel Benusovich Date: Wed, 13 Feb 2019 22:23:27 -0800 Subject: [PATCH] Adding expected data format to TLB header --- TLB/TLB.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/TLB/TLB.py b/TLB/TLB.py index 7c68e4a8..adbf291f 100644 --- a/TLB/TLB.py +++ b/TLB/TLB.py @@ -2,6 +2,10 @@ from nmigen import Memory, Module, Signal from nmigen.cli import main from PermissionValidator import PermissionValidator +# The expected form of the data is +# Item (Bits) +# Tag (N - 79) / ASID (78 - 64) / PTE (63 - 0) + class TLB(): def __init__(self): # Inputs -- 2.30.2