Jsvm
JS virtual machine implementation for education purpose
Install / Use
/learn @VitalyTartynov/JsvmREADME
JSVM
16 bit js virtual machine implementation
Memory model
Virtual CPU use:
- RAM memory (memory size can be changed). Flat model, 0x0000 - 0xFFFF (Up to 64Kb).
- Internal registers memory (access only via registers).
Flash memory now not used.
Register set
Actual information can be found here.
- IP - Instruction pointer. Register value contains memory address of next command for executing.
- AC - Accumulator.
- SP - Stack pointer. Register value contains memory address of stack head.
- Rx - some of general purpose registers.
Program execution
After CPU start IP register contain 0x0000 address, fetch instruction from RAM and start executing.
Stack
After CPU start SP register contain RAM memory size - 2 address.
After push some data SP value decreased by 2 bytes and after pop - increased by 2 bytes.
Instruction set
Actual information can be found here.
| Opcode | Command | Arguments | Sample | Description |
| ------ | ------- | ------------ | ------------- | ----------------------------------- |
| 0x00 | NOP | | | No operation |
| 0x?? | PUSH | 0x???? | PUSH 0x1234 | Push 16 bit constant to stack |
| 0x?? | PUSH | Rx | PUSH R4 | Push register value to stack |
| 0x?? | POP | Rx | POP R1 | Pop value from stack to register |
| 0xFF | HLT | | | Halt |
Related Skills
YC-Killer
2.7kA library of enterprise-grade AI agents designed to democratize artificial intelligence and provide free, open-source alternatives to overvalued Y Combinator startups. If you are excited about democratizing AI access & AI agents, please star ⭐️ this repository and use the link in the readme to join our open source AI research team.
groundhog
398Groundhog's primary purpose is to teach people how Cursor and all these other coding agents work under the hood. If you understand how these coding assistants work from first principles, then you can drive these tools harder (or perhaps make your own!).
isf-agent
a repo for an agent that helps researchers apply for isf funding
last30days-skill
17.6kAI agent skill that researches any topic across Reddit, X, YouTube, HN, Polymarket, and the web - then synthesizes a grounded summary
