psycopathicteen wrote:
I'm still waiting for a response. I believe the actual program is in the .spec file, but my computer doesn't run .spec files, so how do I run the program?
I was able to install this on linux doing the following:
clone the github repo:
https://github.com/gutomaia/pyNES.git# switch to folder and run make (creates a python virtual env)
cd pyNES; make
# activate the python virtual env
source venv/bin/activate
# install pyNES module into venv
python setup.py install
# build examples
cd pynes/examples
pynes py helloworld.py -o helloworld.nes
Test is an emulator of choice by loading helloworld.nes
I'm going to play with this more and fumble my way through as there is next to no documentation right now for this. The above steps *should* work on OSX too. If you run windows you will need python installed, then you can run similar commands using windows command line syntax, and it should work all the same.
Edit: the makefile for OS X explodes. makefile works fine on Centos 7 (and probably any other Linux distro)
Apologies is this is confusing, but it's how "python" works

psycopathicteen wrote:
Like in this video. How do I get a black screen, with a window on the side for asm.
If you're on windows, what he is doing there won't work (or at least I don't know how to reproduce it). If you're on linux/mac , he has some save hook in his editor that updates the file in realtime, using his pynes command, and in his second window it's simply refreshing it with the "watch" command to display the raw ASM generated.