From da356d71be9f28c23e2b4fe99ad3e45c8bd029c3 Mon Sep 17 00:00:00 2001 From: klehman Date: Thu, 7 Oct 2021 11:57:39 -0400 Subject: [PATCH] added comment to teststate --- src/soc/simple/test/teststate.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/soc/simple/test/teststate.py b/src/soc/simple/test/teststate.py index 3a65c9dc..d2f4b51f 100644 --- a/src/soc/simple/test/teststate.py +++ b/src/soc/simple/test/teststate.py @@ -12,6 +12,9 @@ from openpower.test.state import (State, state_add, state_factory, from soc.fu.compunits.test.test_compunit import get_l0_mem class HDLState(State): + """HDLState: Obtains registers and memory from an nmigen simulator + object by implementing State class methods. + """ def __init__(self, core): super().__init__() self.core = core -- 2.30.2