|
You are here |
craigjb.com | ||
| | | | |
www.righto.com
|
|
| | | | | The Intel 8086 processor (1978) has a complicated instruction set with instructions ranging from one to six bytes long. This raises the q... | |
| | | | |
austinmorlan.com
|
|
| | | | | Ive been getting into FPGAs lately. Last year I built an FPGA version of Ben Eaters breadboard computer, but Ive been wanting to do a more advanced project to help me gain experience with Verilog and FPGAs in general. For his breadboard computer, Ben Eater followed the design laid out in a book called Digital Computer Electronics by Malvino and Brown. The book builds what it calls the Simple-as-Possible (SAP) Computer. | |
| | | | |
unsafeperform.io
|
|
| | | | | [AI summary] The author details the design and simulation of a Brainfuck-based CPU implemented on an FPGA using the Lava Haskell DSL to overcome the limitations of VHDL for software developers. | |
| | | | |
jborza.com
|
|
| | | CHIP-8 is one of the most popular target architectures for aspiring emulator writers. I'm planning to implement it in hardware, so I thought that writing a software emulator/interpreter would be enlightening. I was also looking for some practice before implementing CHIP-8 in hardware in Verilog :) CHIP-8 Virtual machine description: 64x32 pixel monochrome display 4K of 8-bit RAM 16 8-bit "variable" registers V0-VF I 16-bit address register Stack of 16-bit addresses for call/return 16-bit PC - program counter 8-bit delay timer (decremented at 60 Hz) until it reaches 0 8-bit sound timer (decremented at 60 Hz), beeps when it reaches 0 16- key keypad that sends scan codes 0x1-0xF Instruction set See https://en. | ||