├── .gitignore ├── README.md ├── docs ├── ch372ds1.pdf ├── ch376ds1.pdf ├── header.txt ├── regs.txt ├── usb_client.txt └── usb_upload.txt ├── roswell.sfc ├── scripts ├── clienttest.py ├── dumptest.py ├── loadrom.py ├── np_dir.py ├── np_dump.py ├── np_dump_all.py ├── roswell │ ├── __init__.py │ ├── romutils.py │ └── usbclient.py └── shell.py └── server ├── Makefile ├── Map.cfg ├── cartinfo.i ├── cartinfo.s ├── data └── font.png ├── libSFX.cfg ├── memctl.i ├── memctl.s ├── roswell.s ├── usb.i └── usb.s /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/roswell/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/roswell/HEAD/README.md -------------------------------------------------------------------------------- /docs/ch372ds1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/roswell/HEAD/docs/ch372ds1.pdf -------------------------------------------------------------------------------- /docs/ch376ds1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/roswell/HEAD/docs/ch376ds1.pdf -------------------------------------------------------------------------------- /docs/header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/roswell/HEAD/docs/header.txt -------------------------------------------------------------------------------- /docs/regs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/roswell/HEAD/docs/regs.txt -------------------------------------------------------------------------------- /docs/usb_client.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/roswell/HEAD/docs/usb_client.txt -------------------------------------------------------------------------------- /docs/usb_upload.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/roswell/HEAD/docs/usb_upload.txt -------------------------------------------------------------------------------- /roswell.sfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/roswell/HEAD/roswell.sfc -------------------------------------------------------------------------------- /scripts/clienttest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/roswell/HEAD/scripts/clienttest.py -------------------------------------------------------------------------------- /scripts/dumptest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/roswell/HEAD/scripts/dumptest.py -------------------------------------------------------------------------------- /scripts/loadrom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/roswell/HEAD/scripts/loadrom.py -------------------------------------------------------------------------------- /scripts/np_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/roswell/HEAD/scripts/np_dir.py -------------------------------------------------------------------------------- /scripts/np_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/roswell/HEAD/scripts/np_dump.py -------------------------------------------------------------------------------- /scripts/np_dump_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/roswell/HEAD/scripts/np_dump_all.py -------------------------------------------------------------------------------- /scripts/roswell/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /scripts/roswell/romutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/roswell/HEAD/scripts/roswell/romutils.py -------------------------------------------------------------------------------- /scripts/roswell/usbclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/roswell/HEAD/scripts/roswell/usbclient.py -------------------------------------------------------------------------------- /scripts/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/roswell/HEAD/scripts/shell.py -------------------------------------------------------------------------------- /server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/roswell/HEAD/server/Makefile -------------------------------------------------------------------------------- /server/Map.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/roswell/HEAD/server/Map.cfg -------------------------------------------------------------------------------- /server/cartinfo.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/roswell/HEAD/server/cartinfo.i -------------------------------------------------------------------------------- /server/cartinfo.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/roswell/HEAD/server/cartinfo.s -------------------------------------------------------------------------------- /server/data/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/roswell/HEAD/server/data/font.png -------------------------------------------------------------------------------- /server/libSFX.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/roswell/HEAD/server/libSFX.cfg -------------------------------------------------------------------------------- /server/memctl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/roswell/HEAD/server/memctl.i -------------------------------------------------------------------------------- /server/memctl.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/roswell/HEAD/server/memctl.s -------------------------------------------------------------------------------- /server/roswell.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/roswell/HEAD/server/roswell.s -------------------------------------------------------------------------------- /server/usb.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/roswell/HEAD/server/usb.i -------------------------------------------------------------------------------- /server/usb.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinacker/roswell/HEAD/server/usb.s --------------------------------------------------------------------------------