You are here |
ariadne.space | ||
| | | |
www.fosspatents.com
|
|
| | | | More than 19 months after now-Google-subsidiary Motorola Mobility forced Apple to deactivate push email notifications for German iCloud user... | |
| | | |
www.fosspatents.com
|
|
| | | | Nine days after Lodsys sued seven little app developers in the Eastern District of Texas, Apple filed a motion to intervene in the proceedi... | |
| | | |
gcher.com
|
|
| | | | This week-end I spent a lot of time trying to optimize the code of my incoming video game. The game engine features a fluid simulation algorithm based on this excellent paper by Jos Stam. The algorithm is CPU intensive, and so I tried my best to make the code as fast as possible, which eventually means having to write the code in assembly. Since I couldnt find much information about how to write assembly code for iOS on XCode, here is a small tutorial I wrote about it. | |
| | | |
jborza.com
|
|
| | CHIP-8 is one of the most popular target architectures for aspiring emulator writers. Im 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 counte... |