<div dir="ltr">Ooh, thanks for that!  I didn't even know hlint existed.  That's pretty cool.  As far as use of the State monad... What I was thinking is that I've got the CPU state that gets fed into just about every function, which then returns a new modified CPU.  So I'm constantly passing the CPU around.  I might want to be able to have hooks that allow me to escape normal updating of the CPU when something specific happens (maybe an error, maybe something else).  Would State help with that or are there any better alternatives?<div><br></div><div>Thanks!</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Mar 27, 2017 at 8:46 PM, Francesco Ariis <span dir="ltr"><<a href="mailto:fa-ml@ariis.it" target="_blank">fa-ml@ariis.it</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="HOEnZb"><div class="h5">On Mon, Mar 27, 2017 at 07:54:55PM -0400, Erik Tillett wrote:<br>
> I'm looking for sugestions on how to better structure this code.  I stuck<br>
> it in a pastbin:<br>
><br>
> <a href="https://pastebin.com/gQFmvq6W/" rel="noreferrer" target="_blank">https://pastebin.com/gQFmvq6W/</a><br>
><br>
> Would a State monad help?<br>
><br>
> Thanks!<br>
<br>
</div></div>Hello Erik,<br>
    a couple of notes:<br>
<br>
- boolToInt is the same as `fromEnum`<br>
<br>
    λ> :t fromEnum<br>
    fromEnum :: Enum a => a -> Int<br>
<br>
- there are a lot of redundant brackets, like<br>
<br>
    if (zReg c) then c{pc = address} else c<br>
       ^      ^<br>
<br>
  minor errors like this are easily caught by hlint<br>
<br>
As for the state monad: you are correctly using monads to capture<br>
the idea of "things that can fail" (Either), judging by the function<br>
signatures I don't see the need for a State monad (i.e. I don't<br>
see signatures that end in (Something, SomeResult).<br>
(or maybe I am misreading the code, in that case please fire again)<br>
<br>
______________________________<wbr>_________________<br>
Beginners mailing list<br>
<a href="mailto:Beginners@haskell.org">Beginners@haskell.org</a><br>
<a href="http://mail.haskell.org/cgi-bin/mailman/listinfo/beginners" rel="noreferrer" target="_blank">http://mail.haskell.org/cgi-<wbr>bin/mailman/listinfo/beginners</a><br>
</blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature" data-smartmail="gmail_signature">=========================<br>   Erik Tillett<br>   614-893-0420<br>   7797 Gladshire Blvd.<br>   Lewis Center, OH 43035<br>=========================</div>
</div>