├── .DS_Store ├── .gitignore ├── .vscode └── ltex.dictionary.en-US.txt ├── C256_JR_UM.odt ├── LICENSE ├── MMU Diagram.odg ├── README.md ├── SID Diagrams.odg ├── examples ├── .DS_Store ├── README.md ├── common │ ├── f256_dma.asm │ ├── f256_irq.asm │ ├── f256_math.asm │ ├── f256_rtc.asm │ ├── f256_sprites.asm │ ├── f256_tiles.asm │ ├── f256_timers.asm │ ├── f256_via.asm │ └── f256jr.asm ├── ex_bitmaps │ ├── .DS_Store │ ├── Makefile │ ├── README.md │ ├── bitmaps.asm │ ├── gradient.raw │ ├── kernel.asm │ └── test_image.py ├── ex_dma │ ├── Makefile │ ├── dma.asm │ ├── dma.lbl │ └── dma.lst ├── ex_interrupts │ ├── Makefile │ └── interrupts.asm ├── ex_mmu_text │ ├── Makefile │ ├── README.md │ └── mmu_text.asm ├── ex_psg │ ├── Makefile │ └── psg.asm ├── ex_rtc │ ├── Makefile │ └── rtc.asm ├── ex_sid │ ├── Makefile │ ├── codec.asm │ └── sid.asm ├── ex_sol │ ├── Makefile │ └── sol.asm ├── ex_sprites │ ├── Balls.aseprite │ ├── BlueBall.png │ ├── Makefile │ ├── balls.raw │ ├── balls_pal.asm │ ├── balls_pix.asm │ ├── imgsplit.py │ └── sprites.asm ├── ex_tiles │ ├── Makefile │ ├── Tiles.aseprite │ ├── Tiles.png │ ├── imgsplit.py │ ├── tiles.asm │ ├── tiles.raw │ ├── tiles_pal.asm │ └── tiles_pix.asm ├── ex_tiles8 │ ├── Makefile │ ├── Tiles8.aseprite │ ├── imgsplit.py │ ├── readme.md │ ├── tile8.raw │ ├── tiles8.asm │ ├── tiles_pal.asm │ └── tiles_pix.asm ├── ex_timers │ ├── Makefile │ ├── timers.asm │ └── timers.lbl └── ex_via │ ├── Makefile │ └── via.asm └── tex ├── .vscode └── ltex.hiddenFalsePositives.en-US.txt ├── IO Page 0.ods ├── bitmap.tex ├── connectors.tex ├── controllers.tex ├── copyright.tex ├── csvtable.py ├── debug.tex ├── dma.tex ├── expansion.tex ├── f256_kernel.pdf ├── f256_kernel.tex ├── f256jr_ref.pdf ├── f256jr_ref.tex ├── graphics.tex ├── iec.tex ├── images ├── Bitmaps.odg ├── C256jr Layout.gif ├── C256jr Layout.odg ├── C256k Layout.odg ├── DMA_2D.odg ├── F256K Matrix.odg ├── F256K_back.png ├── F256K_side.png ├── F256K_top.png ├── IO Connectors.odg ├── Joy1Pinout.odg ├── Layers.odg ├── Layers.pdf ├── Layers.png ├── Layers.svg ├── MemoryLUTSelection.odg ├── MemoryLUTSelection.pdf ├── MemoryLUTSelection.png ├── SpritePositions.gif ├── SpritePositions.odg ├── SpritePositions.pdf ├── TileSet.odg ├── TileSet.pdf ├── bitmaps.pdf ├── bitmaps.svg ├── f256_dma_2d.pdf ├── f256_port_audio.pdf ├── f256_port_case.pdf ├── f256_port_expansion.pdf ├── f256_port_joystick.pdf ├── f256_port_nes.pdf ├── f256_port_ps2.pdf ├── f256_port_uart.pdf ├── f256_port_usb.pdf ├── f256_render_annotated_back.odg ├── f256_render_annotated_back.pdf ├── f256_render_annotated_top.odg ├── f256_render_annotated_top.pdf ├── f256_render_back.png ├── f256_render_back.xcf ├── f256_render_clean_back.png ├── f256_render_clean_top.png ├── f256_render_side.png ├── f256_render_top.png ├── f256_render_top.xcf ├── f256jr_joystick_pinout.pdf ├── f256jr_layout.pdf ├── f256k_back_annotated.odg ├── f256k_back_annotated.pdf ├── f256k_layout.pdf ├── f256k_matrix.pdf ├── f256k_top_annotated.pdf ├── f256k_top_ds.png ├── jumper_boot.pdf ├── jumper_channel.pdf ├── jumper_uart.pdf ├── jumper_voltage.pdf ├── jumpers.odg ├── mmu_address_xlate.odg ├── mmu_address_xlate.pdf ├── pci.png └── via_pin_drivers.png ├── interrupts.tex ├── introduction.tex ├── io_page_0.csv ├── io_page_0_tab.tex ├── kbd_mouse.tex ├── kernel.tex ├── links.tex ├── math.tex ├── memory.tex ├── memory_map.tex ├── notes ├── UART Divisor Calculations.ods └── dma.txt ├── resize_pdf ├── sdc.tex ├── sound.tex ├── sprites.tex ├── sysctrl.tex ├── text.tex ├── tiles.tex ├── time.tex ├── uart.tex ├── via.tex └── vicky_misc.tex /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | docs/*.docx 2 | *.hex 3 | -------------------------------------------------------------------------------- /.vscode/ltex.dictionary.en-US.txt: -------------------------------------------------------------------------------- 1 | Weingartner 2 | Foenix 3 | -------------------------------------------------------------------------------- /C256_JR_UM.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/C256_JR_UM.odt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/LICENSE -------------------------------------------------------------------------------- /MMU Diagram.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/MMU Diagram.odg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/README.md -------------------------------------------------------------------------------- /SID Diagrams.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/SID Diagrams.odg -------------------------------------------------------------------------------- /examples/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/.DS_Store -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/common/f256_dma.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/common/f256_dma.asm -------------------------------------------------------------------------------- /examples/common/f256_irq.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/common/f256_irq.asm -------------------------------------------------------------------------------- /examples/common/f256_math.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/common/f256_math.asm -------------------------------------------------------------------------------- /examples/common/f256_rtc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/common/f256_rtc.asm -------------------------------------------------------------------------------- /examples/common/f256_sprites.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/common/f256_sprites.asm -------------------------------------------------------------------------------- /examples/common/f256_tiles.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/common/f256_tiles.asm -------------------------------------------------------------------------------- /examples/common/f256_timers.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/common/f256_timers.asm -------------------------------------------------------------------------------- /examples/common/f256_via.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/common/f256_via.asm -------------------------------------------------------------------------------- /examples/common/f256jr.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/common/f256jr.asm -------------------------------------------------------------------------------- /examples/ex_bitmaps/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_bitmaps/.DS_Store -------------------------------------------------------------------------------- /examples/ex_bitmaps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_bitmaps/Makefile -------------------------------------------------------------------------------- /examples/ex_bitmaps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_bitmaps/README.md -------------------------------------------------------------------------------- /examples/ex_bitmaps/bitmaps.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_bitmaps/bitmaps.asm -------------------------------------------------------------------------------- /examples/ex_bitmaps/gradient.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_bitmaps/gradient.raw -------------------------------------------------------------------------------- /examples/ex_bitmaps/kernel.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_bitmaps/kernel.asm -------------------------------------------------------------------------------- /examples/ex_bitmaps/test_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_bitmaps/test_image.py -------------------------------------------------------------------------------- /examples/ex_dma/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_dma/Makefile -------------------------------------------------------------------------------- /examples/ex_dma/dma.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_dma/dma.asm -------------------------------------------------------------------------------- /examples/ex_dma/dma.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_dma/dma.lbl -------------------------------------------------------------------------------- /examples/ex_dma/dma.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_dma/dma.lst -------------------------------------------------------------------------------- /examples/ex_interrupts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_interrupts/Makefile -------------------------------------------------------------------------------- /examples/ex_interrupts/interrupts.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_interrupts/interrupts.asm -------------------------------------------------------------------------------- /examples/ex_mmu_text/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_mmu_text/Makefile -------------------------------------------------------------------------------- /examples/ex_mmu_text/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_mmu_text/README.md -------------------------------------------------------------------------------- /examples/ex_mmu_text/mmu_text.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_mmu_text/mmu_text.asm -------------------------------------------------------------------------------- /examples/ex_psg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_psg/Makefile -------------------------------------------------------------------------------- /examples/ex_psg/psg.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_psg/psg.asm -------------------------------------------------------------------------------- /examples/ex_rtc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_rtc/Makefile -------------------------------------------------------------------------------- /examples/ex_rtc/rtc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_rtc/rtc.asm -------------------------------------------------------------------------------- /examples/ex_sid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_sid/Makefile -------------------------------------------------------------------------------- /examples/ex_sid/codec.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_sid/codec.asm -------------------------------------------------------------------------------- /examples/ex_sid/sid.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_sid/sid.asm -------------------------------------------------------------------------------- /examples/ex_sol/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_sol/Makefile -------------------------------------------------------------------------------- /examples/ex_sol/sol.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_sol/sol.asm -------------------------------------------------------------------------------- /examples/ex_sprites/Balls.aseprite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_sprites/Balls.aseprite -------------------------------------------------------------------------------- /examples/ex_sprites/BlueBall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_sprites/BlueBall.png -------------------------------------------------------------------------------- /examples/ex_sprites/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_sprites/Makefile -------------------------------------------------------------------------------- /examples/ex_sprites/balls.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_sprites/balls.raw -------------------------------------------------------------------------------- /examples/ex_sprites/balls_pal.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_sprites/balls_pal.asm -------------------------------------------------------------------------------- /examples/ex_sprites/balls_pix.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_sprites/balls_pix.asm -------------------------------------------------------------------------------- /examples/ex_sprites/imgsplit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_sprites/imgsplit.py -------------------------------------------------------------------------------- /examples/ex_sprites/sprites.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_sprites/sprites.asm -------------------------------------------------------------------------------- /examples/ex_tiles/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_tiles/Makefile -------------------------------------------------------------------------------- /examples/ex_tiles/Tiles.aseprite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_tiles/Tiles.aseprite -------------------------------------------------------------------------------- /examples/ex_tiles/Tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_tiles/Tiles.png -------------------------------------------------------------------------------- /examples/ex_tiles/imgsplit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_tiles/imgsplit.py -------------------------------------------------------------------------------- /examples/ex_tiles/tiles.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_tiles/tiles.asm -------------------------------------------------------------------------------- /examples/ex_tiles/tiles.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_tiles/tiles.raw -------------------------------------------------------------------------------- /examples/ex_tiles/tiles_pal.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_tiles/tiles_pal.asm -------------------------------------------------------------------------------- /examples/ex_tiles/tiles_pix.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_tiles/tiles_pix.asm -------------------------------------------------------------------------------- /examples/ex_tiles8/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_tiles8/Makefile -------------------------------------------------------------------------------- /examples/ex_tiles8/Tiles8.aseprite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_tiles8/Tiles8.aseprite -------------------------------------------------------------------------------- /examples/ex_tiles8/imgsplit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_tiles8/imgsplit.py -------------------------------------------------------------------------------- /examples/ex_tiles8/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_tiles8/readme.md -------------------------------------------------------------------------------- /examples/ex_tiles8/tile8.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_tiles8/tile8.raw -------------------------------------------------------------------------------- /examples/ex_tiles8/tiles8.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_tiles8/tiles8.asm -------------------------------------------------------------------------------- /examples/ex_tiles8/tiles_pal.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_tiles8/tiles_pal.asm -------------------------------------------------------------------------------- /examples/ex_tiles8/tiles_pix.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_tiles8/tiles_pix.asm -------------------------------------------------------------------------------- /examples/ex_timers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_timers/Makefile -------------------------------------------------------------------------------- /examples/ex_timers/timers.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_timers/timers.asm -------------------------------------------------------------------------------- /examples/ex_timers/timers.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_timers/timers.lbl -------------------------------------------------------------------------------- /examples/ex_via/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_via/Makefile -------------------------------------------------------------------------------- /examples/ex_via/via.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/examples/ex_via/via.asm -------------------------------------------------------------------------------- /tex/.vscode/ltex.hiddenFalsePositives.en-US.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/.vscode/ltex.hiddenFalsePositives.en-US.txt -------------------------------------------------------------------------------- /tex/IO Page 0.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/IO Page 0.ods -------------------------------------------------------------------------------- /tex/bitmap.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/bitmap.tex -------------------------------------------------------------------------------- /tex/connectors.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/connectors.tex -------------------------------------------------------------------------------- /tex/controllers.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/controllers.tex -------------------------------------------------------------------------------- /tex/copyright.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/copyright.tex -------------------------------------------------------------------------------- /tex/csvtable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/csvtable.py -------------------------------------------------------------------------------- /tex/debug.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/debug.tex -------------------------------------------------------------------------------- /tex/dma.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/dma.tex -------------------------------------------------------------------------------- /tex/expansion.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/expansion.tex -------------------------------------------------------------------------------- /tex/f256_kernel.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/f256_kernel.pdf -------------------------------------------------------------------------------- /tex/f256_kernel.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/f256_kernel.tex -------------------------------------------------------------------------------- /tex/f256jr_ref.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/f256jr_ref.pdf -------------------------------------------------------------------------------- /tex/f256jr_ref.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/f256jr_ref.tex -------------------------------------------------------------------------------- /tex/graphics.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/graphics.tex -------------------------------------------------------------------------------- /tex/iec.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/iec.tex -------------------------------------------------------------------------------- /tex/images/Bitmaps.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/Bitmaps.odg -------------------------------------------------------------------------------- /tex/images/C256jr Layout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/C256jr Layout.gif -------------------------------------------------------------------------------- /tex/images/C256jr Layout.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/C256jr Layout.odg -------------------------------------------------------------------------------- /tex/images/C256k Layout.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/C256k Layout.odg -------------------------------------------------------------------------------- /tex/images/DMA_2D.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/DMA_2D.odg -------------------------------------------------------------------------------- /tex/images/F256K Matrix.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/F256K Matrix.odg -------------------------------------------------------------------------------- /tex/images/F256K_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/F256K_back.png -------------------------------------------------------------------------------- /tex/images/F256K_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/F256K_side.png -------------------------------------------------------------------------------- /tex/images/F256K_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/F256K_top.png -------------------------------------------------------------------------------- /tex/images/IO Connectors.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/IO Connectors.odg -------------------------------------------------------------------------------- /tex/images/Joy1Pinout.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/Joy1Pinout.odg -------------------------------------------------------------------------------- /tex/images/Layers.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/Layers.odg -------------------------------------------------------------------------------- /tex/images/Layers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/Layers.pdf -------------------------------------------------------------------------------- /tex/images/Layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/Layers.png -------------------------------------------------------------------------------- /tex/images/Layers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/Layers.svg -------------------------------------------------------------------------------- /tex/images/MemoryLUTSelection.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/MemoryLUTSelection.odg -------------------------------------------------------------------------------- /tex/images/MemoryLUTSelection.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/MemoryLUTSelection.pdf -------------------------------------------------------------------------------- /tex/images/MemoryLUTSelection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/MemoryLUTSelection.png -------------------------------------------------------------------------------- /tex/images/SpritePositions.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/SpritePositions.gif -------------------------------------------------------------------------------- /tex/images/SpritePositions.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/SpritePositions.odg -------------------------------------------------------------------------------- /tex/images/SpritePositions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/SpritePositions.pdf -------------------------------------------------------------------------------- /tex/images/TileSet.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/TileSet.odg -------------------------------------------------------------------------------- /tex/images/TileSet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/TileSet.pdf -------------------------------------------------------------------------------- /tex/images/bitmaps.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/bitmaps.pdf -------------------------------------------------------------------------------- /tex/images/bitmaps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/bitmaps.svg -------------------------------------------------------------------------------- /tex/images/f256_dma_2d.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/f256_dma_2d.pdf -------------------------------------------------------------------------------- /tex/images/f256_port_audio.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/f256_port_audio.pdf -------------------------------------------------------------------------------- /tex/images/f256_port_case.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/f256_port_case.pdf -------------------------------------------------------------------------------- /tex/images/f256_port_expansion.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/f256_port_expansion.pdf -------------------------------------------------------------------------------- /tex/images/f256_port_joystick.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/f256_port_joystick.pdf -------------------------------------------------------------------------------- /tex/images/f256_port_nes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/f256_port_nes.pdf -------------------------------------------------------------------------------- /tex/images/f256_port_ps2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/f256_port_ps2.pdf -------------------------------------------------------------------------------- /tex/images/f256_port_uart.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/f256_port_uart.pdf -------------------------------------------------------------------------------- /tex/images/f256_port_usb.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/f256_port_usb.pdf -------------------------------------------------------------------------------- /tex/images/f256_render_annotated_back.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/f256_render_annotated_back.odg -------------------------------------------------------------------------------- /tex/images/f256_render_annotated_back.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/f256_render_annotated_back.pdf -------------------------------------------------------------------------------- /tex/images/f256_render_annotated_top.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/f256_render_annotated_top.odg -------------------------------------------------------------------------------- /tex/images/f256_render_annotated_top.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/f256_render_annotated_top.pdf -------------------------------------------------------------------------------- /tex/images/f256_render_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/f256_render_back.png -------------------------------------------------------------------------------- /tex/images/f256_render_back.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/f256_render_back.xcf -------------------------------------------------------------------------------- /tex/images/f256_render_clean_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/f256_render_clean_back.png -------------------------------------------------------------------------------- /tex/images/f256_render_clean_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/f256_render_clean_top.png -------------------------------------------------------------------------------- /tex/images/f256_render_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/f256_render_side.png -------------------------------------------------------------------------------- /tex/images/f256_render_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/f256_render_top.png -------------------------------------------------------------------------------- /tex/images/f256_render_top.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/f256_render_top.xcf -------------------------------------------------------------------------------- /tex/images/f256jr_joystick_pinout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/f256jr_joystick_pinout.pdf -------------------------------------------------------------------------------- /tex/images/f256jr_layout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/f256jr_layout.pdf -------------------------------------------------------------------------------- /tex/images/f256k_back_annotated.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/f256k_back_annotated.odg -------------------------------------------------------------------------------- /tex/images/f256k_back_annotated.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/f256k_back_annotated.pdf -------------------------------------------------------------------------------- /tex/images/f256k_layout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/f256k_layout.pdf -------------------------------------------------------------------------------- /tex/images/f256k_matrix.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/f256k_matrix.pdf -------------------------------------------------------------------------------- /tex/images/f256k_top_annotated.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/f256k_top_annotated.pdf -------------------------------------------------------------------------------- /tex/images/f256k_top_ds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/f256k_top_ds.png -------------------------------------------------------------------------------- /tex/images/jumper_boot.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/jumper_boot.pdf -------------------------------------------------------------------------------- /tex/images/jumper_channel.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/jumper_channel.pdf -------------------------------------------------------------------------------- /tex/images/jumper_uart.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/jumper_uart.pdf -------------------------------------------------------------------------------- /tex/images/jumper_voltage.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/jumper_voltage.pdf -------------------------------------------------------------------------------- /tex/images/jumpers.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/jumpers.odg -------------------------------------------------------------------------------- /tex/images/mmu_address_xlate.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/mmu_address_xlate.odg -------------------------------------------------------------------------------- /tex/images/mmu_address_xlate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/mmu_address_xlate.pdf -------------------------------------------------------------------------------- /tex/images/pci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/pci.png -------------------------------------------------------------------------------- /tex/images/via_pin_drivers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/images/via_pin_drivers.png -------------------------------------------------------------------------------- /tex/interrupts.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/interrupts.tex -------------------------------------------------------------------------------- /tex/introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/introduction.tex -------------------------------------------------------------------------------- /tex/io_page_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/io_page_0.csv -------------------------------------------------------------------------------- /tex/io_page_0_tab.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/io_page_0_tab.tex -------------------------------------------------------------------------------- /tex/kbd_mouse.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/kbd_mouse.tex -------------------------------------------------------------------------------- /tex/kernel.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/kernel.tex -------------------------------------------------------------------------------- /tex/links.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/links.tex -------------------------------------------------------------------------------- /tex/math.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/math.tex -------------------------------------------------------------------------------- /tex/memory.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/memory.tex -------------------------------------------------------------------------------- /tex/memory_map.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/memory_map.tex -------------------------------------------------------------------------------- /tex/notes/UART Divisor Calculations.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/notes/UART Divisor Calculations.ods -------------------------------------------------------------------------------- /tex/notes/dma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/notes/dma.txt -------------------------------------------------------------------------------- /tex/resize_pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/resize_pdf -------------------------------------------------------------------------------- /tex/sdc.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/sdc.tex -------------------------------------------------------------------------------- /tex/sound.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/sound.tex -------------------------------------------------------------------------------- /tex/sprites.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/sprites.tex -------------------------------------------------------------------------------- /tex/sysctrl.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/sysctrl.tex -------------------------------------------------------------------------------- /tex/text.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/text.tex -------------------------------------------------------------------------------- /tex/tiles.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/tiles.tex -------------------------------------------------------------------------------- /tex/time.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/time.tex -------------------------------------------------------------------------------- /tex/uart.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/uart.tex -------------------------------------------------------------------------------- /tex/via.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/via.tex -------------------------------------------------------------------------------- /tex/vicky_misc.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pweingar/F256Manual/HEAD/tex/vicky_misc.tex --------------------------------------------------------------------------------