├── .gitignore ├── ISAVideo.pretty ├── graphics_gremlin.kicad_mod └── gremlin.kicad_mod ├── LICENSE ├── RAM.sch ├── README.md ├── bus_interface.sch ├── fab └── isavideo_rev2.zip ├── fp-info-cache ├── fp-lib-table ├── images └── gremlin.jpg ├── isabracket.stl ├── isavideo-cache.lib ├── isavideo.csv ├── isavideo.kicad_pcb ├── isavideo.pdf ├── isavideo.pro ├── isavideo.sch ├── power.sch ├── verilog ├── Makefile ├── README.md ├── cga.hex ├── cga.v ├── cga_attrib.v ├── cga_composite.v ├── cga_pixel.v ├── cga_scandoubler.v ├── cga_sequencer.v ├── cga_top.v ├── cga_vgaport.v ├── cga_vram.v ├── crtc6845.v ├── gremlin.pcf ├── is61_tester.v ├── is61c5128_t.v ├── isavideo.binm ├── isavideo_t.v ├── mda.hex ├── mda.v ├── mda70_top.v ├── mda_attrib.v ├── mda_pixel.v ├── mda_sequencer.v ├── mda_top.v ├── mda_vgaport.v └── mda_vram.v └── vga_dac.sch /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/.gitignore -------------------------------------------------------------------------------- /ISAVideo.pretty/graphics_gremlin.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/ISAVideo.pretty/graphics_gremlin.kicad_mod -------------------------------------------------------------------------------- /ISAVideo.pretty/gremlin.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/ISAVideo.pretty/gremlin.kicad_mod -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/LICENSE -------------------------------------------------------------------------------- /RAM.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/RAM.sch -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/README.md -------------------------------------------------------------------------------- /bus_interface.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/bus_interface.sch -------------------------------------------------------------------------------- /fab/isavideo_rev2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/fab/isavideo_rev2.zip -------------------------------------------------------------------------------- /fp-info-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/fp-info-cache -------------------------------------------------------------------------------- /fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/fp-lib-table -------------------------------------------------------------------------------- /images/gremlin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/images/gremlin.jpg -------------------------------------------------------------------------------- /isabracket.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/isabracket.stl -------------------------------------------------------------------------------- /isavideo-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/isavideo-cache.lib -------------------------------------------------------------------------------- /isavideo.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/isavideo.csv -------------------------------------------------------------------------------- /isavideo.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/isavideo.kicad_pcb -------------------------------------------------------------------------------- /isavideo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/isavideo.pdf -------------------------------------------------------------------------------- /isavideo.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/isavideo.pro -------------------------------------------------------------------------------- /isavideo.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/isavideo.sch -------------------------------------------------------------------------------- /power.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/power.sch -------------------------------------------------------------------------------- /verilog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/verilog/Makefile -------------------------------------------------------------------------------- /verilog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/verilog/README.md -------------------------------------------------------------------------------- /verilog/cga.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/verilog/cga.hex -------------------------------------------------------------------------------- /verilog/cga.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/verilog/cga.v -------------------------------------------------------------------------------- /verilog/cga_attrib.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/verilog/cga_attrib.v -------------------------------------------------------------------------------- /verilog/cga_composite.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/verilog/cga_composite.v -------------------------------------------------------------------------------- /verilog/cga_pixel.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/verilog/cga_pixel.v -------------------------------------------------------------------------------- /verilog/cga_scandoubler.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/verilog/cga_scandoubler.v -------------------------------------------------------------------------------- /verilog/cga_sequencer.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/verilog/cga_sequencer.v -------------------------------------------------------------------------------- /verilog/cga_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/verilog/cga_top.v -------------------------------------------------------------------------------- /verilog/cga_vgaport.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/verilog/cga_vgaport.v -------------------------------------------------------------------------------- /verilog/cga_vram.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/verilog/cga_vram.v -------------------------------------------------------------------------------- /verilog/crtc6845.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/verilog/crtc6845.v -------------------------------------------------------------------------------- /verilog/gremlin.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/verilog/gremlin.pcf -------------------------------------------------------------------------------- /verilog/is61_tester.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/verilog/is61_tester.v -------------------------------------------------------------------------------- /verilog/is61c5128_t.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/verilog/is61c5128_t.v -------------------------------------------------------------------------------- /verilog/isavideo.binm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/verilog/isavideo.binm -------------------------------------------------------------------------------- /verilog/isavideo_t.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/verilog/isavideo_t.v -------------------------------------------------------------------------------- /verilog/mda.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/verilog/mda.hex -------------------------------------------------------------------------------- /verilog/mda.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/verilog/mda.v -------------------------------------------------------------------------------- /verilog/mda70_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/verilog/mda70_top.v -------------------------------------------------------------------------------- /verilog/mda_attrib.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/verilog/mda_attrib.v -------------------------------------------------------------------------------- /verilog/mda_pixel.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/verilog/mda_pixel.v -------------------------------------------------------------------------------- /verilog/mda_sequencer.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/verilog/mda_sequencer.v -------------------------------------------------------------------------------- /verilog/mda_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/verilog/mda_top.v -------------------------------------------------------------------------------- /verilog/mda_vgaport.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/verilog/mda_vgaport.v -------------------------------------------------------------------------------- /verilog/mda_vram.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/verilog/mda_vram.v -------------------------------------------------------------------------------- /vga_dac.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schlae/graphics-gremlin/HEAD/vga_dac.sch --------------------------------------------------------------------------------