├── .github └── FUNDING.yml ├── LICENSE ├── README.md ├── platformio.ini └── video ├── OneWire_direct_gpio.h ├── agon.h ├── agon_audio.h ├── agon_fonts.h ├── agon_palette.h ├── agon_ps2.h ├── agon_screen.h ├── agon_ttxt.h ├── audio_channel.h ├── audio_sample.h ├── buffer_stream.h ├── buffers.h ├── cursor.h ├── enhanced_samples_generator.h ├── envelopes ├── frequency.h └── volume.h ├── graphics.h ├── hexload.h ├── multi_buffer_stream.h ├── sprites.h ├── ttxtfont.h ├── types.h ├── updater.h ├── vdp_protocol.h ├── vdu.h ├── vdu_audio.h ├── vdu_buffered.h ├── vdu_sprites.h ├── vdu_stream_processor.h ├── vdu_sys.h ├── video.ino ├── viewport.h └── zdi.h /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakintoprogram/agon-vdp/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakintoprogram/agon-vdp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakintoprogram/agon-vdp/HEAD/README.md -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakintoprogram/agon-vdp/HEAD/platformio.ini -------------------------------------------------------------------------------- /video/OneWire_direct_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakintoprogram/agon-vdp/HEAD/video/OneWire_direct_gpio.h -------------------------------------------------------------------------------- /video/agon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakintoprogram/agon-vdp/HEAD/video/agon.h -------------------------------------------------------------------------------- /video/agon_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakintoprogram/agon-vdp/HEAD/video/agon_audio.h -------------------------------------------------------------------------------- /video/agon_fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakintoprogram/agon-vdp/HEAD/video/agon_fonts.h -------------------------------------------------------------------------------- /video/agon_palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakintoprogram/agon-vdp/HEAD/video/agon_palette.h -------------------------------------------------------------------------------- /video/agon_ps2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakintoprogram/agon-vdp/HEAD/video/agon_ps2.h -------------------------------------------------------------------------------- /video/agon_screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakintoprogram/agon-vdp/HEAD/video/agon_screen.h -------------------------------------------------------------------------------- /video/agon_ttxt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakintoprogram/agon-vdp/HEAD/video/agon_ttxt.h -------------------------------------------------------------------------------- /video/audio_channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakintoprogram/agon-vdp/HEAD/video/audio_channel.h -------------------------------------------------------------------------------- /video/audio_sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakintoprogram/agon-vdp/HEAD/video/audio_sample.h -------------------------------------------------------------------------------- /video/buffer_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakintoprogram/agon-vdp/HEAD/video/buffer_stream.h -------------------------------------------------------------------------------- /video/buffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakintoprogram/agon-vdp/HEAD/video/buffers.h -------------------------------------------------------------------------------- /video/cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakintoprogram/agon-vdp/HEAD/video/cursor.h -------------------------------------------------------------------------------- /video/enhanced_samples_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakintoprogram/agon-vdp/HEAD/video/enhanced_samples_generator.h -------------------------------------------------------------------------------- /video/envelopes/frequency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakintoprogram/agon-vdp/HEAD/video/envelopes/frequency.h -------------------------------------------------------------------------------- /video/envelopes/volume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakintoprogram/agon-vdp/HEAD/video/envelopes/volume.h -------------------------------------------------------------------------------- /video/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakintoprogram/agon-vdp/HEAD/video/graphics.h -------------------------------------------------------------------------------- /video/hexload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakintoprogram/agon-vdp/HEAD/video/hexload.h -------------------------------------------------------------------------------- /video/multi_buffer_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakintoprogram/agon-vdp/HEAD/video/multi_buffer_stream.h -------------------------------------------------------------------------------- /video/sprites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakintoprogram/agon-vdp/HEAD/video/sprites.h -------------------------------------------------------------------------------- /video/ttxtfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakintoprogram/agon-vdp/HEAD/video/ttxtfont.h -------------------------------------------------------------------------------- /video/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakintoprogram/agon-vdp/HEAD/video/types.h -------------------------------------------------------------------------------- /video/updater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakintoprogram/agon-vdp/HEAD/video/updater.h -------------------------------------------------------------------------------- /video/vdp_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakintoprogram/agon-vdp/HEAD/video/vdp_protocol.h -------------------------------------------------------------------------------- /video/vdu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakintoprogram/agon-vdp/HEAD/video/vdu.h -------------------------------------------------------------------------------- /video/vdu_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakintoprogram/agon-vdp/HEAD/video/vdu_audio.h -------------------------------------------------------------------------------- /video/vdu_buffered.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakintoprogram/agon-vdp/HEAD/video/vdu_buffered.h -------------------------------------------------------------------------------- /video/vdu_sprites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakintoprogram/agon-vdp/HEAD/video/vdu_sprites.h -------------------------------------------------------------------------------- /video/vdu_stream_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakintoprogram/agon-vdp/HEAD/video/vdu_stream_processor.h -------------------------------------------------------------------------------- /video/vdu_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakintoprogram/agon-vdp/HEAD/video/vdu_sys.h -------------------------------------------------------------------------------- /video/video.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakintoprogram/agon-vdp/HEAD/video/video.ino -------------------------------------------------------------------------------- /video/viewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakintoprogram/agon-vdp/HEAD/video/viewport.h -------------------------------------------------------------------------------- /video/zdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakintoprogram/agon-vdp/HEAD/video/zdi.h --------------------------------------------------------------------------------