Explore >> Select a destination


You are here

jborza.com
| | feertech.com
1.8 parsecs away

Travel
| | In which we write our first simple machine code
| | incoherency.co.uk
1.5 parsecs away

Travel
| | [AI summary] The author explores their journey into CPU design, discussing FPGA projects, DIY CPUs like Ben Eater's breadboard CPU and Magic-1, and reflections on learning Verilog and the Nand2Tetris course to build a simple CPU capable of running an OS.
| | iosoft.blog
2.1 parsecs away

Travel
| | In a previous post, I described 'EDLA', a WiFi-based logic analyser unit, that uses a Web-based display. That version used an ESP32 to provide WiFi connectivity; the PEDLA uses a Pi PicoW module instead. Hardware PEDLA circuit board The hardware is similar to the previous version; aside from the CPU change, the main addition is...
| | sookocheff.com
23.1 parsecs away

Travel
| Writing correct programs is hard; writing correct concurrent programs is harder. Java Concurrency in Practice. So, why bother with concurrency? A number of reasons: Concurrency provides a natural method for composing asynchronous code. Concurrency allows your program to avoid blocking user operations. Concurrency provides one of the easiest ways take advantage of multi core systems. As processor counts increase, exploiting concurrency will be an even more important facet of high performance systems.