|
You are here |
probablydance.com | ||
| | | | |
vankessel.io
|
|
| | | | | A blog for my thoughts. Mostly philosophy, math, and programming. | |
| | | | |
marc-b-reynolds.github.io
|
|
| | | | | A sketch of a fast path filter to avoid explicit underflow checking following an addition or subtraction. | |
| | | | |
free-variable.org
|
|
| | | | | This article first appeared in PragPub back in 2016. This, what you hold in your hand, was almost the twelth article in my series on modern functional programming, which appeared in PragPub from August 2012.See https://free-variable.org/2017/08/02/my-older-articles-in-pragpub/ for current whereabouts of that material. Some articles also appeared in this book. Despite the title, it's not about... | |
| | | | |
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. | ||