An open API service indexing awesome lists of open source software.

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

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)