Recent content by Wallboy

  1. W

    Byte Addressing vs Word Addressing

    Well my implementation of my MIPS ISA is single cycle. Every instruction is done in one cycle. I plan on doing some multi-cycle and parallel implementations after this to compare. So were the first implementations of Byte Addressing using an actual physical address to point to each byte between...
  2. W

    Byte Addressing vs Word Addressing

    I'm currently learning the MIPS architecture and am implementing my own version of the ISA in a logic simulator. I'm sure I understand the differences between Byte and Word addressing, but I don't understand why we need Byte Addressing. How I currently have my memory system implemented, is I...
  3. W

    Question about Finite State Automatons

    Ahh that's right. I just over thought it and forgot that the counter itself would have to go to infinity. Thanks.
  4. W

    Question about Finite State Automatons

    I'm reading about automata theory and am currently at the part about what a FSA can recognize and what it cannot. They use the example of some language: {0n1n | n ≥ 0} which an FSA cannot be built for. When I first started learning about state machines before reading into theory of...
Back
Top