https://github.com/killarexe/c-nes-project
A Simple NES Workspace in C
https://github.com/killarexe/c-nes-project
6502 6502-assembly assembly c nes nes-game template templates
Last synced: about 1 year ago
JSON representation
A Simple NES Workspace in C
- Host: GitHub
- URL: https://github.com/killarexe/c-nes-project
- Owner: Killarexe
- License: cc-by-sa-4.0
- Created: 2022-12-03T10:30:47.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-12-03T11:00:53.000Z (over 3 years ago)
- Last Synced: 2025-02-14T22:46:14.447Z (over 1 year ago)
- Topics: 6502, 6502-assembly, assembly, c, nes, nes-game, template, templates
- Language: Assembly
- Homepage:
- Size: 30.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple NES C Project
## About
This repository is a simple C workspace to make NES programs/projects.
I simplified [nesdoug](https://github.com/nesdoug)'s workspace, so thanks to him.
## Compile and Run
Before compiling you need to **install [CC65](https://cc65.github.io/)** and make. And **change the compiler and emulator location in the Makefile**
Then to compile you need to just run:
```bash
make
```
To run you just write:
```bash
make run
```
That's it! A simple `"Hello, world!"` program is in the workspace by default.
If you wan't to see some **exemples** go [here.](https://8bitworkshop.com/v3.10.0/?file=hello.c&platform=nes.mame)