Make exec have a single binding.
authorMatthijs Kooijman <m.kooijman@student.utwente.nl>
Fri, 27 Feb 2009 13:37:55 +0000 (14:37 +0100)
committerMatthijs Kooijman <m.kooijman@student.utwente.nl>
Fri, 27 Feb 2009 13:37:55 +0000 (14:37 +0100)
This prevents two separate invocations of register_bank, which leads to
having a separate register bank for reading and writing.

Alu.hs

diff --git a/Alu.hs b/Alu.hs
index ca2dbe9180613a3db75b55843660299246f809aa..ea9bae8cd551db729f16850f0146b7a756c64197 100644 (file)
--- a/Alu.hs
+++ b/Alu.hs
@@ -56,28 +56,16 @@ alu :: AluOp -> Bit -> Bit -> Bit
 alu High a b = a `hwand` b
 alu Low a b = a `hwor` b
 
-salu :: AluOp -> Bit -> Bit -> () -> ((), Bit)
-salu High a b s = (s, a `hwand` b)
-salu Low a b s = (s, a `hwor` b)
-
 type ExecState = (RegisterBankState, Bit, Bit)
 exec :: (RegAddr, Bit, AluOp) -> ExecState -> (ExecState, (Bit))
 
 -- Read & Exec
-exec (addr, Low, op) s =
+exec (addr, we, op) s =
   (s', z')
   where
     (reg_s, t, z) = s
-    (reg_s', t') = register_bank (addr, Low, dontcare) reg_s
+    (reg_s', t') = register_bank (addr, we, z) reg_s
     z' = alu op t' t
     s' = (reg_s', t', z')
 
--- Write
-exec (addr, High, op) s =
-  (s', dontcare)
-  where
-    (reg_s, t, z) = s
-    (reg_s', _) = register_bank (addr, High, z) reg_s
-    s' = (reg_s', t, z)
-
 -- vim: set ts=8 sw=2 sts=2 expandtab: