DealForge autonomously sources, scores, and writes investment memos on venture deals. Stop manually hunting.

1,180+ deals tracked  ·  22 AI investment memos  ·  Updated daily

← Back to leaderboard

I built a RISC

Show HN: I built a RISC-V emulator that runs DOOM

15 AI Score
Show_hn devtools Added May 3, 2026

Details

Sector
devtools
Total Funding
$0
Last Round
$0

About

Demo: <a href="https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=f5uygzEmdLw" rel="nofollow">https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=f5uygzEmdLw</a><p>Hi HN,<p>I built a RISC-V emulator that implements the RV32IM instruction set and a minimal syscall interface to run DOOM. A few weeks ago, I got my first output with a simple hello world assembly program.<p>Since then I have been working tirelessly to get DOOM to run.<p>I needed to figure out how to run C programs first, and came across newlib, which allows the underlying environment to implement the syscall stubs one by one until the programs run.<p>I have also added ELF loading, but currently only a single `PT_LOAD` segment is supported.<p>To port DOOM, I used doomgeneric, which was quite convenient to get working once the required stubs were in place.<p>DOOM renders to a fixed area in memory (0x705FDD = VRAM_START):<p><pre><code> 0x7FFFFF +-------------------------------------+ | | | QUEUE_SIZE (32 bytes) | | | 0x7FFFDF +-------------------------------------+ &lt;-- QUEUE_START 0x7FFFDE | QUEUE_READ_IDX | 0x7FFFDD | QUEUE_WRITE_IDX | +-------------------------------------+ | | | | | VRAM (1,024,000 bytes) | | | | | 0x705FDD +-------------------------------------+ &lt;-- STACK_START | Stack | | | | | v | | | | ^ | | | | | Program data + Heap | | | 0x000000 +-------------------------------------+ </code></pre> I made a small linker script so that the entry point of a C program is at _start and virtual address is always 0. That kept the ELF loader code simple.<p>Inputs are written to the queue by rvcore which are then intercepted by DOOM running inside it.

AI Score Reasoning

This is a technical hobby project demonstrating strong low-level engineering skills rather than a viable startup. While the developer shows competence in systems programming and RISC-V architecture, there is no clear business model, market differentiation, or commercial intent.

Source

Show_hn — View original →