X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fmaster-project%2Fdsd-paper.git;a=blobdiff_plain;f=HigherOrderCPU.hs;h=8833766ebca36789ff9feb1808fe8207c90b5e03;hp=94bb7b6030d992cd46de713a57aa4b6e95b25a2d;hb=9135be92f8b1e6b93d8dc7e8b7c69e0954c91cd5;hpb=2a2530060a81ba5ac88d8ccd90811f1c1d3500a9 diff --git a/HigherOrderCPU.hs b/HigherOrderCPU.hs index 94bb7b6..8833766 100644 --- a/HigherOrderCPU.hs +++ b/HigherOrderCPU.hs @@ -14,32 +14,26 @@ type Index = RangedWord const a b = a -fu op inputs (addr1, addr2) out = - (out', out) +fu op inputs (addr1, addr2) = regIn where - in1 = inputs!addr1 - in2 = inputs!addr2 - out' = op in1 in2 + in1 = inputs!addr1 + in2 = inputs!addr2 + regIn = op in1 in2 type CpuState = State (Vector D4 Word) {-# ANN cpu TopEntity #-} {-# ANN cpu (InitState 'cpuState) #-} -cpu :: - Word - -> Vector D4 (Index D6, Index D6) - -> CpuState +cpu :: CpuState -> Word -> Vector D4 (Index D6, Index D6) -> (CpuState, Word) -cpu input addrs (State fuss) = - (State fuss', out) +cpu (State fuss) input addrs = (State fuss', out) where - fures = (fu const inputs (addrs!(0 :: Index D3)) (fuss!(0 :: Index D3))) +> ( - (fu (+) inputs (addrs!(1 :: Index D3)) (fuss!(1 :: Index D3))) +> ( - (fu (-) inputs (addrs!(2 :: Index D3)) (fuss!(2 :: Index D3))) +> ( - (fu (*) inputs (addrs!(3 :: Index D3)) (fuss!(3 :: Index D3))) +> empty))) - (fuss', outputs) = unzip fures - inputs = 0 +> (1 +> (input +> outputs)) - out = head outputs + fuss' = (fu const inputs (addrs!(0 :: Index D3))) +> ( + (fu (+) inputs (addrs!(1 :: Index D3))) +> ( + (fu (-) inputs (addrs!(2 :: Index D3))) +> ( + (fu (*) inputs (addrs!(3 :: Index D3))) +> empty))) + inputs = 0 +> (1 +> (input +> fuss)) + out = head fuss cpuState :: Vector D4 Word cpuState = copy 0 \ No newline at end of file