https://github.com/covx/lc3
Lc3 Little Computer Emulator
https://github.com/covx/lc3
assembly lc3 lc3-vm virtual-machine
Last synced: 4 months ago
JSON representation
Lc3 Little Computer Emulator
- Host: GitHub
- URL: https://github.com/covx/lc3
- Owner: covx
- License: gpl-3.0
- Created: 2020-04-28T10:47:16.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2025-03-06T08:39:01.000Z (over 1 year ago)
- Last Synced: 2025-04-10T06:15:03.181Z (about 1 year ago)
- Topics: assembly, lc3, lc3-vm, virtual-machine
- Language: Go
- Homepage:
- Size: 243 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# LC3
LC-3 (Little Computer 3) emulator implemented in Go.
See more:
- https://en.wikipedia.org/wiki/Little_Computer_3
- https://justinmeiners.github.io/lc3-vm/supplies/lc3-isa.pdf
- https://www.cs.utexas.edu/users/fussell/courses/cs310h/lectures/Lecture_10-310h.pdf
## Examples:
### 2048 Game:
```
lc3 -image ./examples/2048.obj
```
or
```bash
go run main.go -image ./examples/2048.obj
```
Result:

### Rogue game:
```
lc3 -image ./programs/rogue.obj
```
or
```bash
go run main.go -image ./programs/rogue.obj
```
Result:
