Compare commits
14 Commits
7016042cff
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
551aa135ec | ||
|
|
ea31c0836b | ||
| f86bc9b23b | |||
|
|
930b34dadc | ||
|
|
b44a0c4cb6 | ||
|
|
0a21517721 | ||
|
|
f8c8f37e9e | ||
| e1448a7a33 | |||
| f8a636677a | |||
| 89b2f67e87 | |||
|
|
f3912b8071 | ||
|
|
b4fc2f5c2a | ||
|
|
ba59a23daa | ||
|
|
8cc2052c99 |
4
Makefile
Normal file
4
Makefile
Normal file
@@ -0,0 +1,4 @@
|
||||
build:
|
||||
ca65 plat.s -o plat.o
|
||||
ld65 plat.o -C plat.cfg -o plat.nes
|
||||
|
||||
27
README.md
Normal file
27
README.md
Normal file
@@ -0,0 +1,27 @@
|
||||
# NES Development Test
|
||||
|
||||
## Overview
|
||||
This is a place where I mess around with developing for the Nintendo Entertainment System. It is written completely in 6502 assembly, compiled to the iNES ROM format with [CA65](https://cc65.github.io/).
|
||||
|
||||
My main source of documentation is the [NESDev wiki](https://www.nesdev.org/wiki/Nesdev_Wiki), and the project structure is a heavily modified version of [this NES project template](https://github.com/bbbradsmith/NES-ca65-example/tree/master).
|
||||
|
||||
## Build Instructions
|
||||
Building is supported on macOS and Linux. It requires the CC65 toolchain to be installed via your package manager of choice. For macOS:
|
||||
```macOS
|
||||
brew install cc65
|
||||
```
|
||||
Once installed, run ``make build`` to generate the ``plat.nes`` file, which can then be run in any emulator or on original NES hardware with an Everdrive or similar.
|
||||
|
||||
## Features
|
||||
> [!NOTE]
|
||||
> This project is under active development, and the implemented features are rapidly changing. It has no real goal yet, but may end up being a port of my game [Reboot](https://rochesterx.itch.io/reboot).
|
||||
|
||||
Here is a list of the features I've implemented so far:
|
||||
* 8x16 sprite character
|
||||
* Character animation
|
||||
* NES controller input
|
||||
* Two nametable level structure
|
||||
* Two nametable player positioning
|
||||
* Background tile/attribute placement based on level structure
|
||||
* Collision detection based on level structure
|
||||
* PPU scrolling
|
||||
Reference in New Issue
Block a user