├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── data ├── example.pt3 ├── example.scr └── index.gph ├── drivers ├── esxdos.asm ├── font.asm ├── font.nxp ├── font.nxt ├── input.asm ├── joystick.asm ├── keyboard.asm ├── next.asm ├── proxy.asm ├── tile-driver.asm ├── uart.asm ├── utils.asm └── wifi.asm ├── engine ├── downloader.asm ├── engine.asm ├── fetcher.asm ├── history │ ├── controller.asm │ ├── index.asm │ └── model.asm ├── media-processor.asm ├── resident-parts.asm └── urlencoder.asm ├── main.asm ├── player ├── index.asm ├── vortex-processor.asm └── vortex.asm ├── readme └── demo.gif ├── render ├── buffer.asm ├── dialogbox.asm ├── gopher-page.asm ├── index.asm ├── plaintext.asm ├── row.asm └── ui.asm ├── screen-viewer └── index.asm └── utils ├── comparebuff.asm └── limitedstring.asm /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihirash/internet-nextplorer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihirash/internet-nextplorer/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihirash/internet-nextplorer/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihirash/internet-nextplorer/HEAD/README.md -------------------------------------------------------------------------------- /data/example.pt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihirash/internet-nextplorer/HEAD/data/example.pt3 -------------------------------------------------------------------------------- /data/example.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihirash/internet-nextplorer/HEAD/data/example.scr -------------------------------------------------------------------------------- /data/index.gph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihirash/internet-nextplorer/HEAD/data/index.gph -------------------------------------------------------------------------------- /drivers/esxdos.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihirash/internet-nextplorer/HEAD/drivers/esxdos.asm -------------------------------------------------------------------------------- /drivers/font.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihirash/internet-nextplorer/HEAD/drivers/font.asm -------------------------------------------------------------------------------- /drivers/font.nxp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihirash/internet-nextplorer/HEAD/drivers/font.nxp -------------------------------------------------------------------------------- /drivers/font.nxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihirash/internet-nextplorer/HEAD/drivers/font.nxt -------------------------------------------------------------------------------- /drivers/input.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihirash/internet-nextplorer/HEAD/drivers/input.asm -------------------------------------------------------------------------------- /drivers/joystick.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihirash/internet-nextplorer/HEAD/drivers/joystick.asm -------------------------------------------------------------------------------- /drivers/keyboard.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihirash/internet-nextplorer/HEAD/drivers/keyboard.asm -------------------------------------------------------------------------------- /drivers/next.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihirash/internet-nextplorer/HEAD/drivers/next.asm -------------------------------------------------------------------------------- /drivers/proxy.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihirash/internet-nextplorer/HEAD/drivers/proxy.asm -------------------------------------------------------------------------------- /drivers/tile-driver.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihirash/internet-nextplorer/HEAD/drivers/tile-driver.asm -------------------------------------------------------------------------------- /drivers/uart.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihirash/internet-nextplorer/HEAD/drivers/uart.asm -------------------------------------------------------------------------------- /drivers/utils.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihirash/internet-nextplorer/HEAD/drivers/utils.asm -------------------------------------------------------------------------------- /drivers/wifi.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihirash/internet-nextplorer/HEAD/drivers/wifi.asm -------------------------------------------------------------------------------- /engine/downloader.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihirash/internet-nextplorer/HEAD/engine/downloader.asm -------------------------------------------------------------------------------- /engine/engine.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihirash/internet-nextplorer/HEAD/engine/engine.asm -------------------------------------------------------------------------------- /engine/fetcher.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihirash/internet-nextplorer/HEAD/engine/fetcher.asm -------------------------------------------------------------------------------- /engine/history/controller.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihirash/internet-nextplorer/HEAD/engine/history/controller.asm -------------------------------------------------------------------------------- /engine/history/index.asm: -------------------------------------------------------------------------------- 1 | include "controller.asm" -------------------------------------------------------------------------------- /engine/history/model.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihirash/internet-nextplorer/HEAD/engine/history/model.asm -------------------------------------------------------------------------------- /engine/media-processor.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihirash/internet-nextplorer/HEAD/engine/media-processor.asm -------------------------------------------------------------------------------- /engine/resident-parts.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihirash/internet-nextplorer/HEAD/engine/resident-parts.asm -------------------------------------------------------------------------------- /engine/urlencoder.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihirash/internet-nextplorer/HEAD/engine/urlencoder.asm -------------------------------------------------------------------------------- /main.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihirash/internet-nextplorer/HEAD/main.asm -------------------------------------------------------------------------------- /player/index.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihirash/internet-nextplorer/HEAD/player/index.asm -------------------------------------------------------------------------------- /player/vortex-processor.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihirash/internet-nextplorer/HEAD/player/vortex-processor.asm -------------------------------------------------------------------------------- /player/vortex.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihirash/internet-nextplorer/HEAD/player/vortex.asm -------------------------------------------------------------------------------- /readme/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihirash/internet-nextplorer/HEAD/readme/demo.gif -------------------------------------------------------------------------------- /render/buffer.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihirash/internet-nextplorer/HEAD/render/buffer.asm -------------------------------------------------------------------------------- /render/dialogbox.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihirash/internet-nextplorer/HEAD/render/dialogbox.asm -------------------------------------------------------------------------------- /render/gopher-page.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihirash/internet-nextplorer/HEAD/render/gopher-page.asm -------------------------------------------------------------------------------- /render/index.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihirash/internet-nextplorer/HEAD/render/index.asm -------------------------------------------------------------------------------- /render/plaintext.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihirash/internet-nextplorer/HEAD/render/plaintext.asm -------------------------------------------------------------------------------- /render/row.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihirash/internet-nextplorer/HEAD/render/row.asm -------------------------------------------------------------------------------- /render/ui.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihirash/internet-nextplorer/HEAD/render/ui.asm -------------------------------------------------------------------------------- /screen-viewer/index.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihirash/internet-nextplorer/HEAD/screen-viewer/index.asm -------------------------------------------------------------------------------- /utils/comparebuff.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihirash/internet-nextplorer/HEAD/utils/comparebuff.asm -------------------------------------------------------------------------------- /utils/limitedstring.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihirash/internet-nextplorer/HEAD/utils/limitedstring.asm --------------------------------------------------------------------------------