emu_nes

An NES emulator for learning how the 6502 and similar computers of the era worked
Log | Files | Refs | README | LICENSE

commit c0679b404d3bd9c20133a1868113f200eae2cf9f
parent 27b9d4c1206d2d6c10186359340570ba8fd5befb
Author: vin <git@vineetk.net>
Date:   Sat, 31 Aug 2024 22:24:05 -0400

add shell.nix to get dependencies easily

Diffstat:
Ashell.nix | 6++++++
1 file changed, 6 insertions(+), 0 deletions(-)

diff --git a/shell.nix b/shell.nix @@ -0,0 +1,6 @@ +with import <nixpkgs> {}; mkShellNoCC { + nativeBuildInputs = [ + bmake + clang + ]; +}