diff options
author | jjsuperpower <jjs29356@gmail.com> | 2023-01-22 23:27:04 -0600 |
---|---|---|
committer | jjsuperpower <jjs29356@gmail.com> | 2023-01-22 23:27:04 -0600 |
commit | 95d870b5218c40abc5d14cf8acf196663ee518e0 (patch) | |
tree | 656bfb25af72ea389982b3bea5605f9ea2f938e2 /hdl/core | |
parent | 0a9a7393aaef36ee35e75cbcf0fcd77d29a046e1 (diff) |
misc
Diffstat (limited to 'hdl/core')
-rw-r--r-- | hdl/core/control.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hdl/core/control.py b/hdl/core/control.py index 04efe74..ffea409 100644 --- a/hdl/core/control.py +++ b/hdl/core/control.py @@ -5,8 +5,8 @@ from enum import Enum, unique from hdl.utils import * from hdl.lib.in_out_buff import InOutBuff # used for timing analysis -from alu import AluOpCodes -from jump_ctl import JumpOpCodes +from hdl.core.alu import AluOpCodes +from hdl.core.jump_ctl import JumpOpCodes class Control(Elaboratable): |