├── 6809ROM ├── 27C16_NationalSemiconductor.pdf ├── TMS2516.pdf ├── nanocomp6809_1981.bin ├── nanocomp6809_1981_7c00.bin ├── nanocomp6809_2022.bin ├── nanocomp_6809_v2.1_doc.bin ├── nanocomp_6809_v2_doc.bin └── nanocomp_6809_v3_doc.bin ├── Asm ├── crt1.asm ├── crt1.txt ├── crt10.asm ├── crt10.srec ├── crt10.txt ├── crt11.asm ├── crt11.srec ├── crt11.txt ├── crt2.asm ├── crt2.txt ├── crt3.asm ├── crt3.txt ├── crt3_400_70Hz.asm ├── crt3_400_70Hz.txt ├── crt3_400_70HzCap.asm ├── crt3_400_70Hzcap.txt ├── crt4.asm ├── crt5.asm ├── crt5.srec ├── crt5.txt ├── crt6.asm ├── crt6.srec ├── crt6.txt ├── crt7.asm ├── crt7.srec ├── crt7.txt ├── crt8.asm ├── crt8.srec ├── crt8.txt ├── crt9.asm ├── crt9.srec ├── crt9.txt ├── helloworld │ ├── HelloWorld1.pdf │ ├── HelloWorld2.pdf │ ├── hello.asm │ └── hello.txt ├── nanocomp_6809_v10_doc.asm ├── nanocomp_6809_v10_doc.txt ├── nanocomp_6809_v2.1_doc.asm ├── nanocomp_6809_v2.1_doc.txt ├── nanocomp_6809_v2_doc.asm ├── nanocomp_6809_v2_doc.txt ├── nanocomp_6809_v3_doc.asm ├── nanocomp_6809_v3_doc.txt ├── nanocomp_6809_v8_doc.asm ├── nanocomp_6809_v8_doc.txt ├── serialin.asm ├── serialin.txt ├── serialout.asm ├── serialout.txt ├── tetrisguipoc.asm └── tetrisguipoc.txt ├── C ├── 256colour │ ├── cmoc.h │ ├── cmocextra.h │ ├── nanocomp.c │ ├── nanocomp.h │ ├── stdarg.h │ ├── test256c.c │ ├── test256c.h │ ├── test256c.srec │ ├── test256c2.c │ ├── test256c2.srec │ ├── test256c3.c │ └── test256c3.srec ├── Keypad │ ├── keypad2.c │ └── keypadascii.c ├── LanderV1 │ ├── README.md │ └── src │ │ ├── Lander.c │ │ ├── Lander.h │ │ ├── Landscape.c │ │ ├── cmoc.h │ │ ├── cmocextra.h │ │ ├── game.c │ │ ├── lander_game.c │ │ ├── lander_game.h │ │ ├── lander_game.srec │ │ ├── lander_game_ext.h │ │ ├── landerraster.h │ │ ├── landscape.h │ │ ├── nanocomp.c │ │ ├── nanocomp.h │ │ └── stdarg.h ├── TestVGA │ ├── cmoc.h │ ├── cmocextra.h │ ├── nanocomp.c │ ├── nanocomp.h │ └── testvga1.c ├── TetrisV1 │ ├── DoesItRunTetrisYes.jpg │ ├── LICENSE.txt │ ├── README.md │ └── src │ │ ├── cmoc.h │ │ ├── cmocextra.h │ │ ├── int │ │ ├── main.link │ │ ├── main.lst │ │ ├── main.map │ │ ├── nanocomp.lst │ │ ├── nccurses.lst │ │ └── tetris.lst │ │ ├── main.c │ │ ├── main.srec │ │ ├── nanocomp.c │ │ ├── nanocomp.h │ │ ├── nccurses.c │ │ ├── nccurses.h │ │ ├── stdarg.h │ │ ├── tetris.c │ │ └── tetris.h ├── TetrisV2 │ ├── DoesItRunTetrisYes.jpg │ ├── LICENSE.txt │ ├── README.md │ └── src │ │ ├── cmoc.h │ │ ├── cmocextra.h │ │ ├── int │ │ ├── main.link │ │ ├── main.lst │ │ ├── main.map │ │ ├── nanocomp.lst │ │ ├── nccurses.lst │ │ └── tetris.lst │ │ ├── main.c │ │ ├── main.srec │ │ ├── nanocomp.c │ │ ├── nanocomp.h │ │ ├── nccurses.c │ │ ├── nccurses.h │ │ ├── stdarg.h │ │ ├── tetris.c │ │ └── tetris.h ├── keyboard │ ├── KeyboardLogicAnalyzer.png │ ├── cmoc.h │ ├── cmocextra.h │ ├── keyboard1.c │ ├── keyboard1.srec │ ├── keyboard2.c │ ├── keyboard2.srec │ ├── nanocomp.c │ ├── nanocomp.h │ ├── nanocomp2.c │ ├── nanocomp2.h │ └── stdarg.h ├── png │ ├── Doom.png │ ├── VGA_palette_with_black_borders.svg.png │ ├── cmoc.h │ ├── cmocextra.h │ ├── doom.srec │ ├── nanocomp.c │ ├── nanocomp.h │ ├── pallete.srec │ ├── pngtosrec │ ├── pngtosrec.c │ ├── spng.c │ ├── spng.h │ ├── stdarg.h │ ├── vgapal │ ├── vgapal.c │ └── vgapal.txt └── sound │ ├── cmoc.h │ ├── cmocextra.h │ ├── nanocomp.c │ ├── nanocomp.h │ ├── sound1.c │ ├── sound1.srec │ ├── sound2.c │ ├── sound2.srec │ └── stdarg.h ├── ChipLabels ├── Dave ChipLayouts Overline.pdf ├── Dave ChipLayouts Overline.svg ├── Dave ChipLayouts.pdf └── readme.txt ├── DASM ├── 6809DASM.ZIP ├── 6809DASMFIX │ ├── 6809DASM.C │ ├── MAKEFILE │ └── OPCODE.H ├── Commands.txt ├── data │ ├── nanocompdata_7800_05.txt │ ├── nanocompdata_7c00.txt │ ├── nanocompdata_7c00_01.txt │ ├── nanocompdata_7c00_02.txt │ ├── nanocompdata_7c00_03.txt │ └── nanocompdata_7c00_04.txt ├── nanocomp_6809_7800_05.txt ├── nanocomp_6809_7800_06.asm ├── nanocomp_6809_7800_06.lst ├── nanocomp_6809_7c00_01.txt ├── nanocomp_6809_7c00_02.txt ├── nanocomp_6809_7c00_03.txt ├── nanocomp_6809_7c00_04.txt └── rom.m68 ├── Docs ├── 6802_Wireless_World_Jan_1981.pdf ├── 6809_Wireless_World_July_1981.pdf ├── 6809_schematic_july_1981.pdf ├── Counter_Clr_timing.xlsx ├── Keypad.xlsx ├── MappingD&A.xlsx ├── MappingD&A_RA8.xlsx ├── datasheets │ ├── 6845.pdf │ ├── 6c1008_ram_0900766b8139de13.pdf │ ├── AN_396-FTDI-Drivers-Installation-Guide-for-Windows-10_11.pdf │ ├── DS_FT232R.pdf │ ├── Intel 8042.pdf │ ├── MC6809P_Datasheet.pdf │ ├── MC6821_Datasheet.pdf │ ├── MC6850_Motorola.pdf │ ├── ScanCodetoExtendedASCII.xlsx │ ├── example.srec │ ├── hd46505-datasheet-hitachi.pdf │ ├── sn74als161n.pdf │ ├── sn74als541n.pdf │ ├── sn74ls138.pdf │ ├── sn74ls145.pdf │ ├── sn74ls161a-sp.pdf │ ├── sn74ls241.pdf │ ├── sn74ls245.pdf │ ├── sn74ls540.pdf │ ├── uln2803a.pdf │ ├── vga_tv_resistors_nanocomp.xlsx │ └── vt82c42 PC Keyboard conrtroller.pdf └── vga_tv_resistors_nanocomp.xlsx ├── Fonts ├── CGA.F08 ├── CGA.F08.png ├── CGA.SREC ├── LANDER2.F16 ├── LANDERFONT.SREC ├── VGA16.SREC ├── VGA8.F16 └── VGA8.F16.png ├── Fritzing ├── Nanocomp_Keypad.fzz ├── Nanocomp_Keypad_underside.fzz ├── Nanocomp_Keypad_underside_v2.fzz ├── Nanocomp_Keypad_underside_v2_bb.pdf ├── Nanocomp_Keypad_underside_v2_bb_no_parts.pdf ├── Nanocomp_display.fzz ├── Nanocomp_display_v2.fzz ├── Nanocomp_display_v3.fzz ├── Nanocomp_display_v3_bb_V1.pdf ├── Nanocomp_display_v3_bb_V2.pdf ├── Nanocomp_display_v3_bb_V3.pdf ├── Nanocomp_display_v3_bb_V4.pdf ├── parts │ ├── svg │ │ └── user │ │ │ ├── breadboard │ │ │ ├── 13 Pin Connector_1716bd8e60465d06cc2c9037be3058db_5_breadboard.svg │ │ │ ├── 13 Pin Connector_ed53dca519525c56939c8931aa307e5a_1_breadboard.svg │ │ │ ├── 13 pin header_97ef2234f0c45e98dfd14db42d80216a_2_breadboard.svg │ │ │ ├── 13 pin header_97ef2234f0c45e98dfd14db42d80216a_3_breadboard.svg │ │ │ ├── 13 pin header_cf21fafc9d0fd70ca83cadc85036432b_5_breadboard.svg │ │ │ ├── 7_Segment_x4_0493ebde442add4d62ada424d699ee65_2_breadboard.svg │ │ │ ├── 7_Segment_x4_2dfa33ee40957881a04f4a57142d2d39_10_breadboard.svg │ │ │ ├── 7_Segment_x4_2dfa33ee40957881a04f4a57142d2d39_8_breadboard.svg │ │ │ ├── 7_Segment_x4_377b971c937076c061556afb5e996d05_1_breadboard.svg │ │ │ ├── 7_Segment_x4_d290d22e607762817d737778fdaafaf1_2_breadboard.svg │ │ │ ├── 7_Segment_x4_f4ff0f4ad9aa0ce06c12b43bd10026de_2_breadboard.svg │ │ │ ├── MC6809P_989f367222b5c047c5606e6b58a1d12b_1_breadboard.svg │ │ │ ├── MC6809P_989f367222b5c047c5606e6b58a1d12b_5_breadboard.svg │ │ │ ├── MC6809P_f971de549b9d74a0b8bd48798bff101b_1_breadboard.svg │ │ │ ├── NPN_BC182L_452b883c8d05c6aae37c91bafe32add0_1_breadboard.svg │ │ │ ├── NPN_BC182L_8b0dcf821e3642177422417c49da8ee6_1_breadboard.svg │ │ │ ├── NPN_BC182L_8b0dcf821e3642177422417c49da8ee6_2_breadboard.svg │ │ │ ├── TrackBreak_6abcf0bfb525a837208898a0140be739_6_breadboard.svg │ │ │ ├── breadboardingSW_d9b79e425d93ef07428b838db7f89ad9_2_breadboard.svg │ │ │ ├── breadboardingSW_d9b79e425d93ef07428b838db7f89ad9_4_breadboard.svg │ │ │ ├── mc6809_cpu_40pin_dip_dd1384e124a0d7ade800725fdaa88797_1_breadboard.svg │ │ │ └── resistor-isolated-8-sip_breadboard.svg │ │ │ ├── icon │ │ │ ├── 13 Pin Connector_1716bd8e60465d06cc2c9037be3058db_5_icon.svg │ │ │ ├── 13 Pin Connector_ed53dca519525c56939c8931aa307e5a_1_icon.svg │ │ │ ├── 13 pin header_97ef2234f0c45e98dfd14db42d80216a_2_icon.svg │ │ │ ├── 13 pin header_97ef2234f0c45e98dfd14db42d80216a_3_icon.svg │ │ │ ├── 13 pin header_cf21fafc9d0fd70ca83cadc85036432b_5_icon.svg │ │ │ ├── 7_Segment_x4_0493ebde442add4d62ada424d699ee65_2_icon.svg │ │ │ ├── 7_Segment_x4_2dfa33ee40957881a04f4a57142d2d39_10_icon.svg │ │ │ ├── 7_Segment_x4_2dfa33ee40957881a04f4a57142d2d39_8_icon.svg │ │ │ ├── 7_Segment_x4_377b971c937076c061556afb5e996d05_1_icon.svg │ │ │ ├── 7_Segment_x4_d290d22e607762817d737778fdaafaf1_2_icon.svg │ │ │ ├── 7_Segment_x4_f4ff0f4ad9aa0ce06c12b43bd10026de_2_icon.svg │ │ │ ├── MC6809P_989f367222b5c047c5606e6b58a1d12b_1_icon.svg │ │ │ ├── MC6809P_989f367222b5c047c5606e6b58a1d12b_5_icon.svg │ │ │ ├── MC6809P_f971de549b9d74a0b8bd48798bff101b_1_icon.svg │ │ │ ├── NPN_BC182L_452b883c8d05c6aae37c91bafe32add0_1_icon.svg │ │ │ ├── NPN_BC182L_8b0dcf821e3642177422417c49da8ee6_1_icon.svg │ │ │ ├── NPN_BC182L_8b0dcf821e3642177422417c49da8ee6_2_icon.svg │ │ │ ├── TrackBreak_6abcf0bfb525a837208898a0140be739_6_icon.svg │ │ │ ├── breadboardingSW_d9b79e425d93ef07428b838db7f89ad9_2_icon.svg │ │ │ ├── breadboardingSW_d9b79e425d93ef07428b838db7f89ad9_4_icon.svg │ │ │ ├── mc6809_cpu_40pin_dip_dd1384e124a0d7ade800725fdaa88797_1_icon.svg │ │ │ └── resistor-isolated-8-sip_icon.svg │ │ │ ├── pcb │ │ │ ├── 13 Pin Connector_1716bd8e60465d06cc2c9037be3058db_5_pcb.svg │ │ │ ├── 13 Pin Connector_ed53dca519525c56939c8931aa307e5a_1_pcb.svg │ │ │ ├── 13 pin header_97ef2234f0c45e98dfd14db42d80216a_2_pcb.svg │ │ │ ├── 13 pin header_97ef2234f0c45e98dfd14db42d80216a_3_pcb.svg │ │ │ ├── 13 pin header_cf21fafc9d0fd70ca83cadc85036432b_5_pcb.svg │ │ │ ├── 7_Segment_x4_0493ebde442add4d62ada424d699ee65_2_pcb.svg │ │ │ ├── 7_Segment_x4_2dfa33ee40957881a04f4a57142d2d39_10_pcb.svg │ │ │ ├── 7_Segment_x4_2dfa33ee40957881a04f4a57142d2d39_8_pcb.svg │ │ │ ├── 7_Segment_x4_377b971c937076c061556afb5e996d05_1_pcb.svg │ │ │ ├── 7_Segment_x4_d290d22e607762817d737778fdaafaf1_2_pcb.svg │ │ │ ├── 7_Segment_x4_f4ff0f4ad9aa0ce06c12b43bd10026de_2_pcb.svg │ │ │ ├── MC6809P_989f367222b5c047c5606e6b58a1d12b_1_pcb.svg │ │ │ ├── MC6809P_989f367222b5c047c5606e6b58a1d12b_5_pcb.svg │ │ │ ├── MC6809P_f971de549b9d74a0b8bd48798bff101b_1_pcb.svg │ │ │ ├── NPN_BC182L_452b883c8d05c6aae37c91bafe32add0_1_pcb.svg │ │ │ ├── NPN_BC182L_8b0dcf821e3642177422417c49da8ee6_1_pcb.svg │ │ │ ├── NPN_BC182L_8b0dcf821e3642177422417c49da8ee6_2_pcb.svg │ │ │ ├── TrackBreak_6abcf0bfb525a837208898a0140be739_6_pcb.svg │ │ │ ├── breadboardingSW_d9b79e425d93ef07428b838db7f89ad9_2_pcb.svg │ │ │ ├── breadboardingSW_d9b79e425d93ef07428b838db7f89ad9_4_pcb.svg │ │ │ ├── mc6809_cpu_40pin_dip_dd1384e124a0d7ade800725fdaa88797_1_pcb.svg │ │ │ └── resistor-isolated-8-sip_pcb.svg │ │ │ └── schematic │ │ │ ├── 13 Pin Connector_1716bd8e60465d06cc2c9037be3058db_5_schematic.svg │ │ │ ├── 13 Pin Connector_ed53dca519525c56939c8931aa307e5a_1_schematic.svg │ │ │ ├── 13 pin header_97ef2234f0c45e98dfd14db42d80216a_2_schematic.svg │ │ │ ├── 13 pin header_97ef2234f0c45e98dfd14db42d80216a_3_schematic.svg │ │ │ ├── 13 pin header_cf21fafc9d0fd70ca83cadc85036432b_5_schematic.svg │ │ │ ├── 7_Segment_x4_0493ebde442add4d62ada424d699ee65_2_schematic.svg │ │ │ ├── 7_Segment_x4_2dfa33ee40957881a04f4a57142d2d39_10_schematic.svg │ │ │ ├── 7_Segment_x4_2dfa33ee40957881a04f4a57142d2d39_8_schematic.svg │ │ │ ├── 7_Segment_x4_377b971c937076c061556afb5e996d05_1_schematic.svg │ │ │ ├── 7_Segment_x4_d290d22e607762817d737778fdaafaf1_2_schematic.svg │ │ │ ├── 7_Segment_x4_f4ff0f4ad9aa0ce06c12b43bd10026de_2_schematic.svg │ │ │ ├── MC6809P_989f367222b5c047c5606e6b58a1d12b_1_schematic.svg │ │ │ ├── MC6809P_989f367222b5c047c5606e6b58a1d12b_5_schematic.svg │ │ │ ├── MC6809P_f971de549b9d74a0b8bd48798bff101b_1_schematic.svg │ │ │ ├── NPN_BC182L_452b883c8d05c6aae37c91bafe32add0_1_schematic.svg │ │ │ ├── NPN_BC182L_8b0dcf821e3642177422417c49da8ee6_1_schematic.svg │ │ │ ├── NPN_BC182L_8b0dcf821e3642177422417c49da8ee6_2_schematic.svg │ │ │ ├── TrackBreak_6abcf0bfb525a837208898a0140be739_6_schematic.svg │ │ │ ├── breadboardingSW_d9b79e425d93ef07428b838db7f89ad9_2_schematic.svg │ │ │ ├── breadboardingSW_d9b79e425d93ef07428b838db7f89ad9_4_schematic.svg │ │ │ ├── mc6809_cpu_40pin_dip_dd1384e124a0d7ade800725fdaa88797_1_schematic.svg │ │ │ └── resistor-isolated-8-sip_schematic.svg │ └── user │ │ ├── 13 Pin Connector_1716bd8e60465d06cc2c9037be3058db_5.fzp │ │ ├── 13 pin header_cf21fafc9d0fd70ca83cadc85036432b_5.fzp │ │ ├── 7_Segment_x4_2dfa33ee40957881a04f4a57142d2d39_8.fzp │ │ ├── MC6809P_989f367222b5c047c5606e6b58a1d12b_1.fzp │ │ ├── MC6809P_f971de549b9d74a0b8bd48798bff101b_1.fzp │ │ ├── NPN_BC182L_452b883c8d05c6aae37c91bafe32add0_1.fzp │ │ ├── NPN_BC182L_8b0dcf821e3642177422417c49da8ee6_1.fzp │ │ ├── TrackBreak_6abcf0bfb525a837208898a0140be739_6.fzp │ │ ├── breadboardingSW_d9b79e425d93ef07428b838db7f89ad9_2.fzp │ │ ├── mc6809_cpu_40pin_dip_dd1384e124a0d7ade800725fdaa88797_1.fzp │ │ └── resistor-isolated-8-sip.fzp ├── resistor-network-8x220.fzpz └── svg │ ├── 13_pin_socket_bb.svg │ ├── 13_pin_socket_schem.svg │ ├── 7segment_x4.svg │ ├── 7segment_x4_schematic.svg │ ├── key_swicth_large.svg │ ├── key_swicth_medium.svg │ ├── key_switch_125mm.svg │ ├── key_switch_622mm.svg │ ├── mc6809_dip40_bb.svg │ └── track_break.svg ├── Kicad ├── Breadboarding.kicad_sym ├── Nanocomp6809V1 │ ├── Nanocomp6809V1-backups │ │ ├── Nanocomp6809V1-2022-06-08_223133.zip │ │ ├── Nanocomp6809V1-2022-06-08_230223.zip │ │ ├── Nanocomp6809V1-2022-06-09_003644.zip │ │ ├── Nanocomp6809V1-2022-06-09_005056.zip │ │ ├── Nanocomp6809V1-2022-06-09_010557.zip │ │ ├── Nanocomp6809V1-2022-06-15_223130.zip │ │ ├── Nanocomp6809V1-2022-06-15_225611.zip │ │ ├── Nanocomp6809V1-2022-06-22_005427.zip │ │ ├── Nanocomp6809V1-2022-06-22_235030.zip │ │ ├── Nanocomp6809V1-2022-06-23_001028.zip │ │ ├── Nanocomp6809V1-2022-06-23_231851.zip │ │ ├── Nanocomp6809V1-2022-06-24_005023.zip │ │ ├── Nanocomp6809V1-2022-06-24_005827.zip │ │ ├── Nanocomp6809V1-2022-06-26_195717.zip │ │ ├── Nanocomp6809V1-2022-07-04_192709.zip │ │ ├── Nanocomp6809V1-2022-08-10_152020.zip │ │ ├── Nanocomp6809V1-2022-08-10_154037.zip │ │ ├── Nanocomp6809V1-2022-08-10_155945.zip │ │ ├── Nanocomp6809V1-2022-08-10_160819.zip │ │ ├── Nanocomp6809V1-2022-08-10_231857.zip │ │ ├── Nanocomp6809V1-2022-08-12_154846.zip │ │ ├── Nanocomp6809V1-2022-09-12_001039.zip │ │ ├── Nanocomp6809V1-2022-09-28_134817.zip │ │ ├── Nanocomp6809V1-2022-09-28_135753.zip │ │ ├── Nanocomp6809V1-2022-09-28_200704.zip │ │ └── Nanocomp6809V1-2022-11-01_191548.zip │ ├── Nanocomp6809V1.00.pdf │ ├── Nanocomp6809V1.kicad_pcb │ ├── Nanocomp6809V1.kicad_prl │ ├── Nanocomp6809V1.kicad_pro │ ├── Nanocomp6809V1.kicad_sch │ ├── Nanocomp6809V1.kicad_sch-bak │ ├── Nanocomp6809V1.pdf │ ├── fp-info-cache │ └── sym-lib-table ├── Nanocomp6809V11 │ ├── Nanocomp6809V11.kicad_pcb │ ├── Nanocomp6809V11.kicad_prl │ ├── Nanocomp6809V11.kicad_pro │ ├── Nanocomp6809V11.kicad_sch │ ├── Nanocomp6809V11.pdf │ └── sym-lib-table ├── Nanocomp6809V2 │ ├── Nanocomp6809V2-backups │ │ ├── Nanocomp6809V2-2022-10-12_212457.zip │ │ ├── Nanocomp6809V2-2022-10-12_215557.zip │ │ ├── Nanocomp6809V2-2022-10-12_222939.zip │ │ ├── Nanocomp6809V2-2022-10-12_231540.zip │ │ ├── Nanocomp6809V2-2022-10-12_234307.zip │ │ ├── Nanocomp6809V2-2022-10-14_153355.zip │ │ ├── Nanocomp6809V2-2022-10-14_225348.zip │ │ ├── Nanocomp6809V2-2022-10-18_224639.zip │ │ ├── Nanocomp6809V2-2022-11-01_190147.zip │ │ └── Nanocomp6809V2-2022-11-01_191040.zip │ ├── Nanocomp6809V2.kicad_pcb │ ├── Nanocomp6809V2.kicad_prl │ ├── Nanocomp6809V2.kicad_pro │ ├── Nanocomp6809V2.kicad_sch │ ├── Nanocomp6809V2.kicad_sch-bak │ ├── Nanocomp6809V2.pdf │ ├── fp-info-cache │ └── sym-lib-table ├── Nanocomp6809V3 │ ├── Nanocomp6809V3.kicad_pcb │ ├── Nanocomp6809V3.kicad_prl │ ├── Nanocomp6809V3.kicad_pro │ ├── Nanocomp6809V3.kicad_sch │ ├── Nanocomp6809V3.kicad_sch-bak │ ├── Nanocomp6809V3.kicad_sch.bak │ ├── Nanocomp6809V3.pdf │ ├── fp-info-cache │ └── sym-lib-table ├── Nanocomp6809V4 │ ├── Nanocomp6809V4.kicad_pcb │ ├── Nanocomp6809V4.kicad_prl │ ├── Nanocomp6809V4.kicad_pro │ ├── Nanocomp6809V4.kicad_sch │ ├── Nanocomp6809V4.pdf │ ├── fp-info-cache │ └── sym-lib-table ├── Nanocomp6809V5 │ ├── Nanocomp6809V5.kicad_pcb │ ├── Nanocomp6809V5.kicad_prl │ ├── Nanocomp6809V5.kicad_pro │ ├── Nanocomp6809V5.kicad_sch │ ├── Nanocomp6809V5.pdf │ ├── fp-info-cache │ └── sym-lib-table ├── Nanocomp6809V6 │ ├── Nanocomp6809V5.kicad_prl │ ├── Nanocomp6809V6-backups │ │ ├── Nanocomp6809V6-2022-12-04_002320.zip │ │ ├── Nanocomp6809V6-2022-12-06_001834.zip │ │ ├── Nanocomp6809V6-2022-12-08_225359.zip │ │ ├── Nanocomp6809V6-2022-12-08_233505.zip │ │ └── Nanocomp6809V6-2022-12-10_214751.zip │ ├── Nanocomp6809V6.kicad_pcb │ ├── Nanocomp6809V6.kicad_prl │ ├── Nanocomp6809V6.kicad_pro │ ├── Nanocomp6809V6.kicad_sch │ ├── Nanocomp6809V6.pdf │ ├── fp-info-cache │ └── sym-lib-table ├── Nanocomp6809V7 │ ├── Nanocomp6809V7-backups │ │ ├── Nanocomp6809V7-2022-12-09_005637.zip │ │ ├── Nanocomp6809V7-2022-12-10_184826.zip │ │ ├── Nanocomp6809V7-2022-12-10_214932.zip │ │ ├── Nanocomp6809V7-2022-12-11_190128.zip │ │ └── Nanocomp6809V7-2022-12-12_195301.zip │ ├── Nanocomp6809V7.kicad_pcb │ ├── Nanocomp6809V7.kicad_prl │ ├── Nanocomp6809V7.kicad_pro │ ├── Nanocomp6809V7.kicad_sch │ ├── Nanocomp6809V7.pdf │ ├── fp-info-cache │ └── sym-lib-table ├── Nanocomp6809V8 │ ├── Nanocomp6809V8.kicad_pcb │ ├── Nanocomp6809V8.kicad_prl │ ├── Nanocomp6809V8.kicad_pro │ ├── Nanocomp6809V8.kicad_sch │ ├── Nanocomp6809V8.pdf │ ├── Nanocomp6809V8MuxVersion.pdf │ ├── fp-info-cache │ └── sym-lib-table └── Nanocomp6809V9 │ ├── Nanocomp6809V9.kicad_pcb │ ├── Nanocomp6809V9.kicad_prl │ ├── Nanocomp6809V9.kicad_pro │ ├── Nanocomp6809V9.kicad_sch │ ├── Nanocomp6809V9.pdf │ └── sym-lib-table ├── LICENSE ├── PLD ├── DACV1.PLD ├── DACV2.PLD ├── NANOCOMPV11.PLD ├── NANOCOMPV12.PLD ├── NANOCOMPV4.PLD ├── NANOCOMPV8.PLD ├── Nanocomp.jed ├── NanocompV8.jed ├── Nanocompv3.jed ├── Nanocompv4.jed ├── Nanocompv9.jed ├── VGA.jed ├── VGA1.jed ├── VGA2.jed ├── VIDEOLOGIC1V11.PLD ├── VIDEOLOGIC1V12.PLD ├── VIDEOLOGIC1V12.PLD.bak ├── VIDEOLOGIC1V12.abs ├── VIDEOLOGIC1V12.pdf ├── VIDEOLOGIC1V12.sim ├── VIDEOLOGIC1V9.PLD ├── VIDEOLOGIC2.PLD ├── VIDEOLOGIC2V9.PLD ├── VMUXV1.PLD ├── VRCPU1V1.PLD ├── VRCPU2V1.PLD ├── VRCRTC1.PLD └── VRCRTC2.PLD └── README.md /6809ROM/27C16_NationalSemiconductor.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/6809ROM/27C16_NationalSemiconductor.pdf -------------------------------------------------------------------------------- /6809ROM/TMS2516.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/6809ROM/TMS2516.pdf -------------------------------------------------------------------------------- /6809ROM/nanocomp6809_1981.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/6809ROM/nanocomp6809_1981.bin -------------------------------------------------------------------------------- /6809ROM/nanocomp6809_1981_7c00.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/6809ROM/nanocomp6809_1981_7c00.bin -------------------------------------------------------------------------------- /6809ROM/nanocomp6809_2022.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/6809ROM/nanocomp6809_2022.bin -------------------------------------------------------------------------------- /6809ROM/nanocomp_6809_v2.1_doc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/6809ROM/nanocomp_6809_v2.1_doc.bin -------------------------------------------------------------------------------- /6809ROM/nanocomp_6809_v2_doc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/6809ROM/nanocomp_6809_v2_doc.bin -------------------------------------------------------------------------------- /6809ROM/nanocomp_6809_v3_doc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/6809ROM/nanocomp_6809_v3_doc.bin -------------------------------------------------------------------------------- /Asm/crt1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/crt1.asm -------------------------------------------------------------------------------- /Asm/crt1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/crt1.txt -------------------------------------------------------------------------------- /Asm/crt10.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/crt10.asm -------------------------------------------------------------------------------- /Asm/crt10.srec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/crt10.srec -------------------------------------------------------------------------------- /Asm/crt10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/crt10.txt -------------------------------------------------------------------------------- /Asm/crt11.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/crt11.asm -------------------------------------------------------------------------------- /Asm/crt11.srec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/crt11.srec -------------------------------------------------------------------------------- /Asm/crt11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/crt11.txt -------------------------------------------------------------------------------- /Asm/crt2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/crt2.asm -------------------------------------------------------------------------------- /Asm/crt2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/crt2.txt -------------------------------------------------------------------------------- /Asm/crt3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/crt3.asm -------------------------------------------------------------------------------- /Asm/crt3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/crt3.txt -------------------------------------------------------------------------------- /Asm/crt3_400_70Hz.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/crt3_400_70Hz.asm -------------------------------------------------------------------------------- /Asm/crt3_400_70Hz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/crt3_400_70Hz.txt -------------------------------------------------------------------------------- /Asm/crt3_400_70HzCap.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/crt3_400_70HzCap.asm -------------------------------------------------------------------------------- /Asm/crt3_400_70Hzcap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/crt3_400_70Hzcap.txt -------------------------------------------------------------------------------- /Asm/crt4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/crt4.asm -------------------------------------------------------------------------------- /Asm/crt5.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/crt5.asm -------------------------------------------------------------------------------- /Asm/crt5.srec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/crt5.srec -------------------------------------------------------------------------------- /Asm/crt5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/crt5.txt -------------------------------------------------------------------------------- /Asm/crt6.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/crt6.asm -------------------------------------------------------------------------------- /Asm/crt6.srec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/crt6.srec -------------------------------------------------------------------------------- /Asm/crt6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/crt6.txt -------------------------------------------------------------------------------- /Asm/crt7.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/crt7.asm -------------------------------------------------------------------------------- /Asm/crt7.srec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/crt7.srec -------------------------------------------------------------------------------- /Asm/crt7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/crt7.txt -------------------------------------------------------------------------------- /Asm/crt8.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/crt8.asm -------------------------------------------------------------------------------- /Asm/crt8.srec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/crt8.srec -------------------------------------------------------------------------------- /Asm/crt8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/crt8.txt -------------------------------------------------------------------------------- /Asm/crt9.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/crt9.asm -------------------------------------------------------------------------------- /Asm/crt9.srec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/crt9.srec -------------------------------------------------------------------------------- /Asm/crt9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/crt9.txt -------------------------------------------------------------------------------- /Asm/helloworld/HelloWorld1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/helloworld/HelloWorld1.pdf -------------------------------------------------------------------------------- /Asm/helloworld/HelloWorld2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/helloworld/HelloWorld2.pdf -------------------------------------------------------------------------------- /Asm/helloworld/hello.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/helloworld/hello.asm -------------------------------------------------------------------------------- /Asm/helloworld/hello.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/helloworld/hello.txt -------------------------------------------------------------------------------- /Asm/nanocomp_6809_v10_doc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/nanocomp_6809_v10_doc.asm -------------------------------------------------------------------------------- /Asm/nanocomp_6809_v10_doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/nanocomp_6809_v10_doc.txt -------------------------------------------------------------------------------- /Asm/nanocomp_6809_v2.1_doc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/nanocomp_6809_v2.1_doc.asm -------------------------------------------------------------------------------- /Asm/nanocomp_6809_v2.1_doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/nanocomp_6809_v2.1_doc.txt -------------------------------------------------------------------------------- /Asm/nanocomp_6809_v2_doc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/nanocomp_6809_v2_doc.asm -------------------------------------------------------------------------------- /Asm/nanocomp_6809_v2_doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/nanocomp_6809_v2_doc.txt -------------------------------------------------------------------------------- /Asm/nanocomp_6809_v3_doc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/nanocomp_6809_v3_doc.asm -------------------------------------------------------------------------------- /Asm/nanocomp_6809_v3_doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/nanocomp_6809_v3_doc.txt -------------------------------------------------------------------------------- /Asm/nanocomp_6809_v8_doc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/nanocomp_6809_v8_doc.asm -------------------------------------------------------------------------------- /Asm/nanocomp_6809_v8_doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/nanocomp_6809_v8_doc.txt -------------------------------------------------------------------------------- /Asm/serialin.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/serialin.asm -------------------------------------------------------------------------------- /Asm/serialin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/serialin.txt -------------------------------------------------------------------------------- /Asm/serialout.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/serialout.asm -------------------------------------------------------------------------------- /Asm/serialout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/serialout.txt -------------------------------------------------------------------------------- /Asm/tetrisguipoc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/tetrisguipoc.asm -------------------------------------------------------------------------------- /Asm/tetrisguipoc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Asm/tetrisguipoc.txt -------------------------------------------------------------------------------- /C/256colour/cmoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/256colour/cmoc.h -------------------------------------------------------------------------------- /C/256colour/cmocextra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/256colour/cmocextra.h -------------------------------------------------------------------------------- /C/256colour/nanocomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/256colour/nanocomp.c -------------------------------------------------------------------------------- /C/256colour/nanocomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/256colour/nanocomp.h -------------------------------------------------------------------------------- /C/256colour/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/256colour/stdarg.h -------------------------------------------------------------------------------- /C/256colour/test256c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/256colour/test256c.c -------------------------------------------------------------------------------- /C/256colour/test256c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/256colour/test256c.h -------------------------------------------------------------------------------- /C/256colour/test256c.srec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/256colour/test256c.srec -------------------------------------------------------------------------------- /C/256colour/test256c2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/256colour/test256c2.c -------------------------------------------------------------------------------- /C/256colour/test256c2.srec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/256colour/test256c2.srec -------------------------------------------------------------------------------- /C/256colour/test256c3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/256colour/test256c3.c -------------------------------------------------------------------------------- /C/256colour/test256c3.srec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/256colour/test256c3.srec -------------------------------------------------------------------------------- /C/Keypad/keypad2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/Keypad/keypad2.c -------------------------------------------------------------------------------- /C/Keypad/keypadascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/Keypad/keypadascii.c -------------------------------------------------------------------------------- /C/LanderV1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/LanderV1/README.md -------------------------------------------------------------------------------- /C/LanderV1/src/Lander.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/LanderV1/src/Lander.c -------------------------------------------------------------------------------- /C/LanderV1/src/Lander.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/LanderV1/src/Lander.h -------------------------------------------------------------------------------- /C/LanderV1/src/Landscape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/LanderV1/src/Landscape.c -------------------------------------------------------------------------------- /C/LanderV1/src/cmoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/LanderV1/src/cmoc.h -------------------------------------------------------------------------------- /C/LanderV1/src/cmocextra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/LanderV1/src/cmocextra.h -------------------------------------------------------------------------------- /C/LanderV1/src/game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/LanderV1/src/game.c -------------------------------------------------------------------------------- /C/LanderV1/src/lander_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/LanderV1/src/lander_game.c -------------------------------------------------------------------------------- /C/LanderV1/src/lander_game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/LanderV1/src/lander_game.h -------------------------------------------------------------------------------- /C/LanderV1/src/lander_game.srec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/LanderV1/src/lander_game.srec -------------------------------------------------------------------------------- /C/LanderV1/src/lander_game_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/LanderV1/src/lander_game_ext.h -------------------------------------------------------------------------------- /C/LanderV1/src/landerraster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/LanderV1/src/landerraster.h -------------------------------------------------------------------------------- /C/LanderV1/src/landscape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/LanderV1/src/landscape.h -------------------------------------------------------------------------------- /C/LanderV1/src/nanocomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/LanderV1/src/nanocomp.c -------------------------------------------------------------------------------- /C/LanderV1/src/nanocomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/LanderV1/src/nanocomp.h -------------------------------------------------------------------------------- /C/LanderV1/src/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/LanderV1/src/stdarg.h -------------------------------------------------------------------------------- /C/TestVGA/cmoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TestVGA/cmoc.h -------------------------------------------------------------------------------- /C/TestVGA/cmocextra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TestVGA/cmocextra.h -------------------------------------------------------------------------------- /C/TestVGA/nanocomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TestVGA/nanocomp.c -------------------------------------------------------------------------------- /C/TestVGA/nanocomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TestVGA/nanocomp.h -------------------------------------------------------------------------------- /C/TestVGA/testvga1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TestVGA/testvga1.c -------------------------------------------------------------------------------- /C/TetrisV1/DoesItRunTetrisYes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TetrisV1/DoesItRunTetrisYes.jpg -------------------------------------------------------------------------------- /C/TetrisV1/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TetrisV1/LICENSE.txt -------------------------------------------------------------------------------- /C/TetrisV1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TetrisV1/README.md -------------------------------------------------------------------------------- /C/TetrisV1/src/cmoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TetrisV1/src/cmoc.h -------------------------------------------------------------------------------- /C/TetrisV1/src/cmocextra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TetrisV1/src/cmocextra.h -------------------------------------------------------------------------------- /C/TetrisV1/src/int/main.link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TetrisV1/src/int/main.link -------------------------------------------------------------------------------- /C/TetrisV1/src/int/main.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TetrisV1/src/int/main.lst -------------------------------------------------------------------------------- /C/TetrisV1/src/int/main.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TetrisV1/src/int/main.map -------------------------------------------------------------------------------- /C/TetrisV1/src/int/nanocomp.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TetrisV1/src/int/nanocomp.lst -------------------------------------------------------------------------------- /C/TetrisV1/src/int/nccurses.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TetrisV1/src/int/nccurses.lst -------------------------------------------------------------------------------- /C/TetrisV1/src/int/tetris.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TetrisV1/src/int/tetris.lst -------------------------------------------------------------------------------- /C/TetrisV1/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TetrisV1/src/main.c -------------------------------------------------------------------------------- /C/TetrisV1/src/main.srec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TetrisV1/src/main.srec -------------------------------------------------------------------------------- /C/TetrisV1/src/nanocomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TetrisV1/src/nanocomp.c -------------------------------------------------------------------------------- /C/TetrisV1/src/nanocomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TetrisV1/src/nanocomp.h -------------------------------------------------------------------------------- /C/TetrisV1/src/nccurses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TetrisV1/src/nccurses.c -------------------------------------------------------------------------------- /C/TetrisV1/src/nccurses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TetrisV1/src/nccurses.h -------------------------------------------------------------------------------- /C/TetrisV1/src/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TetrisV1/src/stdarg.h -------------------------------------------------------------------------------- /C/TetrisV1/src/tetris.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TetrisV1/src/tetris.c -------------------------------------------------------------------------------- /C/TetrisV1/src/tetris.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TetrisV1/src/tetris.h -------------------------------------------------------------------------------- /C/TetrisV2/DoesItRunTetrisYes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TetrisV2/DoesItRunTetrisYes.jpg -------------------------------------------------------------------------------- /C/TetrisV2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TetrisV2/LICENSE.txt -------------------------------------------------------------------------------- /C/TetrisV2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TetrisV2/README.md -------------------------------------------------------------------------------- /C/TetrisV2/src/cmoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TetrisV2/src/cmoc.h -------------------------------------------------------------------------------- /C/TetrisV2/src/cmocextra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TetrisV2/src/cmocextra.h -------------------------------------------------------------------------------- /C/TetrisV2/src/int/main.link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TetrisV2/src/int/main.link -------------------------------------------------------------------------------- /C/TetrisV2/src/int/main.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TetrisV2/src/int/main.lst -------------------------------------------------------------------------------- /C/TetrisV2/src/int/main.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TetrisV2/src/int/main.map -------------------------------------------------------------------------------- /C/TetrisV2/src/int/nanocomp.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TetrisV2/src/int/nanocomp.lst -------------------------------------------------------------------------------- /C/TetrisV2/src/int/nccurses.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TetrisV2/src/int/nccurses.lst -------------------------------------------------------------------------------- /C/TetrisV2/src/int/tetris.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TetrisV2/src/int/tetris.lst -------------------------------------------------------------------------------- /C/TetrisV2/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TetrisV2/src/main.c -------------------------------------------------------------------------------- /C/TetrisV2/src/main.srec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TetrisV2/src/main.srec -------------------------------------------------------------------------------- /C/TetrisV2/src/nanocomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TetrisV2/src/nanocomp.c -------------------------------------------------------------------------------- /C/TetrisV2/src/nanocomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TetrisV2/src/nanocomp.h -------------------------------------------------------------------------------- /C/TetrisV2/src/nccurses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TetrisV2/src/nccurses.c -------------------------------------------------------------------------------- /C/TetrisV2/src/nccurses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TetrisV2/src/nccurses.h -------------------------------------------------------------------------------- /C/TetrisV2/src/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TetrisV2/src/stdarg.h -------------------------------------------------------------------------------- /C/TetrisV2/src/tetris.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TetrisV2/src/tetris.c -------------------------------------------------------------------------------- /C/TetrisV2/src/tetris.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/TetrisV2/src/tetris.h -------------------------------------------------------------------------------- /C/keyboard/KeyboardLogicAnalyzer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/keyboard/KeyboardLogicAnalyzer.png -------------------------------------------------------------------------------- /C/keyboard/cmoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/keyboard/cmoc.h -------------------------------------------------------------------------------- /C/keyboard/cmocextra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/keyboard/cmocextra.h -------------------------------------------------------------------------------- /C/keyboard/keyboard1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/keyboard/keyboard1.c -------------------------------------------------------------------------------- /C/keyboard/keyboard1.srec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/keyboard/keyboard1.srec -------------------------------------------------------------------------------- /C/keyboard/keyboard2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/keyboard/keyboard2.c -------------------------------------------------------------------------------- /C/keyboard/keyboard2.srec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/keyboard/keyboard2.srec -------------------------------------------------------------------------------- /C/keyboard/nanocomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/keyboard/nanocomp.c -------------------------------------------------------------------------------- /C/keyboard/nanocomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/keyboard/nanocomp.h -------------------------------------------------------------------------------- /C/keyboard/nanocomp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/keyboard/nanocomp2.c -------------------------------------------------------------------------------- /C/keyboard/nanocomp2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/keyboard/nanocomp2.h -------------------------------------------------------------------------------- /C/keyboard/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/keyboard/stdarg.h -------------------------------------------------------------------------------- /C/png/Doom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/png/Doom.png -------------------------------------------------------------------------------- /C/png/VGA_palette_with_black_borders.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/png/VGA_palette_with_black_borders.svg.png -------------------------------------------------------------------------------- /C/png/cmoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/png/cmoc.h -------------------------------------------------------------------------------- /C/png/cmocextra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/png/cmocextra.h -------------------------------------------------------------------------------- /C/png/doom.srec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/png/doom.srec -------------------------------------------------------------------------------- /C/png/nanocomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/png/nanocomp.c -------------------------------------------------------------------------------- /C/png/nanocomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/png/nanocomp.h -------------------------------------------------------------------------------- /C/png/pallete.srec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/png/pallete.srec -------------------------------------------------------------------------------- /C/png/pngtosrec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/png/pngtosrec -------------------------------------------------------------------------------- /C/png/pngtosrec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/png/pngtosrec.c -------------------------------------------------------------------------------- /C/png/spng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/png/spng.c -------------------------------------------------------------------------------- /C/png/spng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/png/spng.h -------------------------------------------------------------------------------- /C/png/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/png/stdarg.h -------------------------------------------------------------------------------- /C/png/vgapal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/png/vgapal -------------------------------------------------------------------------------- /C/png/vgapal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/png/vgapal.c -------------------------------------------------------------------------------- /C/png/vgapal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/png/vgapal.txt -------------------------------------------------------------------------------- /C/sound/cmoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/sound/cmoc.h -------------------------------------------------------------------------------- /C/sound/cmocextra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/sound/cmocextra.h -------------------------------------------------------------------------------- /C/sound/nanocomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/sound/nanocomp.c -------------------------------------------------------------------------------- /C/sound/nanocomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/sound/nanocomp.h -------------------------------------------------------------------------------- /C/sound/sound1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/sound/sound1.c -------------------------------------------------------------------------------- /C/sound/sound1.srec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/sound/sound1.srec -------------------------------------------------------------------------------- /C/sound/sound2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/sound/sound2.c -------------------------------------------------------------------------------- /C/sound/sound2.srec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/sound/sound2.srec -------------------------------------------------------------------------------- /C/sound/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/C/sound/stdarg.h -------------------------------------------------------------------------------- /ChipLabels/Dave ChipLayouts Overline.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/ChipLabels/Dave ChipLayouts Overline.pdf -------------------------------------------------------------------------------- /ChipLabels/Dave ChipLayouts Overline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/ChipLabels/Dave ChipLayouts Overline.svg -------------------------------------------------------------------------------- /ChipLabels/Dave ChipLayouts.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/ChipLabels/Dave ChipLayouts.pdf -------------------------------------------------------------------------------- /ChipLabels/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/ChipLabels/readme.txt -------------------------------------------------------------------------------- /DASM/6809DASM.ZIP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/DASM/6809DASM.ZIP -------------------------------------------------------------------------------- /DASM/6809DASMFIX/6809DASM.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/DASM/6809DASMFIX/6809DASM.C -------------------------------------------------------------------------------- /DASM/6809DASMFIX/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/DASM/6809DASMFIX/MAKEFILE -------------------------------------------------------------------------------- /DASM/6809DASMFIX/OPCODE.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/DASM/6809DASMFIX/OPCODE.H -------------------------------------------------------------------------------- /DASM/Commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/DASM/Commands.txt -------------------------------------------------------------------------------- /DASM/data/nanocompdata_7800_05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/DASM/data/nanocompdata_7800_05.txt -------------------------------------------------------------------------------- /DASM/data/nanocompdata_7c00.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/DASM/data/nanocompdata_7c00.txt -------------------------------------------------------------------------------- /DASM/data/nanocompdata_7c00_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/DASM/data/nanocompdata_7c00_01.txt -------------------------------------------------------------------------------- /DASM/data/nanocompdata_7c00_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/DASM/data/nanocompdata_7c00_02.txt -------------------------------------------------------------------------------- /DASM/data/nanocompdata_7c00_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/DASM/data/nanocompdata_7c00_03.txt -------------------------------------------------------------------------------- /DASM/data/nanocompdata_7c00_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/DASM/data/nanocompdata_7c00_04.txt -------------------------------------------------------------------------------- /DASM/nanocomp_6809_7800_05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/DASM/nanocomp_6809_7800_05.txt -------------------------------------------------------------------------------- /DASM/nanocomp_6809_7800_06.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/DASM/nanocomp_6809_7800_06.asm -------------------------------------------------------------------------------- /DASM/nanocomp_6809_7800_06.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/DASM/nanocomp_6809_7800_06.lst -------------------------------------------------------------------------------- /DASM/nanocomp_6809_7c00_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/DASM/nanocomp_6809_7c00_01.txt -------------------------------------------------------------------------------- /DASM/nanocomp_6809_7c00_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/DASM/nanocomp_6809_7c00_02.txt -------------------------------------------------------------------------------- /DASM/nanocomp_6809_7c00_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/DASM/nanocomp_6809_7c00_03.txt -------------------------------------------------------------------------------- /DASM/nanocomp_6809_7c00_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/DASM/nanocomp_6809_7c00_04.txt -------------------------------------------------------------------------------- /DASM/rom.m68: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/DASM/rom.m68 -------------------------------------------------------------------------------- /Docs/6802_Wireless_World_Jan_1981.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Docs/6802_Wireless_World_Jan_1981.pdf -------------------------------------------------------------------------------- /Docs/6809_Wireless_World_July_1981.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Docs/6809_Wireless_World_July_1981.pdf -------------------------------------------------------------------------------- /Docs/6809_schematic_july_1981.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Docs/6809_schematic_july_1981.pdf -------------------------------------------------------------------------------- /Docs/Counter_Clr_timing.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Docs/Counter_Clr_timing.xlsx -------------------------------------------------------------------------------- /Docs/Keypad.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Docs/Keypad.xlsx -------------------------------------------------------------------------------- /Docs/MappingD&A.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Docs/MappingD&A.xlsx -------------------------------------------------------------------------------- /Docs/MappingD&A_RA8.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Docs/MappingD&A_RA8.xlsx -------------------------------------------------------------------------------- /Docs/datasheets/6845.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Docs/datasheets/6845.pdf -------------------------------------------------------------------------------- /Docs/datasheets/6c1008_ram_0900766b8139de13.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Docs/datasheets/6c1008_ram_0900766b8139de13.pdf -------------------------------------------------------------------------------- /Docs/datasheets/AN_396-FTDI-Drivers-Installation-Guide-for-Windows-10_11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Docs/datasheets/AN_396-FTDI-Drivers-Installation-Guide-for-Windows-10_11.pdf -------------------------------------------------------------------------------- /Docs/datasheets/DS_FT232R.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Docs/datasheets/DS_FT232R.pdf -------------------------------------------------------------------------------- /Docs/datasheets/Intel 8042.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Docs/datasheets/Intel 8042.pdf -------------------------------------------------------------------------------- /Docs/datasheets/MC6809P_Datasheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Docs/datasheets/MC6809P_Datasheet.pdf -------------------------------------------------------------------------------- /Docs/datasheets/MC6821_Datasheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Docs/datasheets/MC6821_Datasheet.pdf -------------------------------------------------------------------------------- /Docs/datasheets/MC6850_Motorola.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Docs/datasheets/MC6850_Motorola.pdf -------------------------------------------------------------------------------- /Docs/datasheets/ScanCodetoExtendedASCII.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Docs/datasheets/ScanCodetoExtendedASCII.xlsx -------------------------------------------------------------------------------- /Docs/datasheets/example.srec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Docs/datasheets/example.srec -------------------------------------------------------------------------------- /Docs/datasheets/hd46505-datasheet-hitachi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Docs/datasheets/hd46505-datasheet-hitachi.pdf -------------------------------------------------------------------------------- /Docs/datasheets/sn74als161n.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Docs/datasheets/sn74als161n.pdf -------------------------------------------------------------------------------- /Docs/datasheets/sn74als541n.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Docs/datasheets/sn74als541n.pdf -------------------------------------------------------------------------------- /Docs/datasheets/sn74ls138.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Docs/datasheets/sn74ls138.pdf -------------------------------------------------------------------------------- /Docs/datasheets/sn74ls145.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Docs/datasheets/sn74ls145.pdf -------------------------------------------------------------------------------- /Docs/datasheets/sn74ls161a-sp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Docs/datasheets/sn74ls161a-sp.pdf -------------------------------------------------------------------------------- /Docs/datasheets/sn74ls241.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Docs/datasheets/sn74ls241.pdf -------------------------------------------------------------------------------- /Docs/datasheets/sn74ls245.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Docs/datasheets/sn74ls245.pdf -------------------------------------------------------------------------------- /Docs/datasheets/sn74ls540.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Docs/datasheets/sn74ls540.pdf -------------------------------------------------------------------------------- /Docs/datasheets/uln2803a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Docs/datasheets/uln2803a.pdf -------------------------------------------------------------------------------- /Docs/datasheets/vga_tv_resistors_nanocomp.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Docs/datasheets/vga_tv_resistors_nanocomp.xlsx -------------------------------------------------------------------------------- /Docs/datasheets/vt82c42 PC Keyboard conrtroller.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Docs/datasheets/vt82c42 PC Keyboard conrtroller.pdf -------------------------------------------------------------------------------- /Docs/vga_tv_resistors_nanocomp.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Docs/vga_tv_resistors_nanocomp.xlsx -------------------------------------------------------------------------------- /Fonts/CGA.F08: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fonts/CGA.F08 -------------------------------------------------------------------------------- /Fonts/CGA.F08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fonts/CGA.F08.png -------------------------------------------------------------------------------- /Fonts/CGA.SREC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fonts/CGA.SREC -------------------------------------------------------------------------------- /Fonts/LANDER2.F16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fonts/LANDER2.F16 -------------------------------------------------------------------------------- /Fonts/LANDERFONT.SREC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fonts/LANDERFONT.SREC -------------------------------------------------------------------------------- /Fonts/VGA16.SREC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fonts/VGA16.SREC -------------------------------------------------------------------------------- /Fonts/VGA8.F16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fonts/VGA8.F16 -------------------------------------------------------------------------------- /Fonts/VGA8.F16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fonts/VGA8.F16.png -------------------------------------------------------------------------------- /Fritzing/Nanocomp_Keypad.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/Nanocomp_Keypad.fzz -------------------------------------------------------------------------------- /Fritzing/Nanocomp_Keypad_underside.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/Nanocomp_Keypad_underside.fzz -------------------------------------------------------------------------------- /Fritzing/Nanocomp_Keypad_underside_v2.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/Nanocomp_Keypad_underside_v2.fzz -------------------------------------------------------------------------------- /Fritzing/Nanocomp_Keypad_underside_v2_bb.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/Nanocomp_Keypad_underside_v2_bb.pdf -------------------------------------------------------------------------------- /Fritzing/Nanocomp_Keypad_underside_v2_bb_no_parts.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/Nanocomp_Keypad_underside_v2_bb_no_parts.pdf -------------------------------------------------------------------------------- /Fritzing/Nanocomp_display.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/Nanocomp_display.fzz -------------------------------------------------------------------------------- /Fritzing/Nanocomp_display_v2.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/Nanocomp_display_v2.fzz -------------------------------------------------------------------------------- /Fritzing/Nanocomp_display_v3.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/Nanocomp_display_v3.fzz -------------------------------------------------------------------------------- /Fritzing/Nanocomp_display_v3_bb_V1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/Nanocomp_display_v3_bb_V1.pdf -------------------------------------------------------------------------------- /Fritzing/Nanocomp_display_v3_bb_V2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/Nanocomp_display_v3_bb_V2.pdf -------------------------------------------------------------------------------- /Fritzing/Nanocomp_display_v3_bb_V3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/Nanocomp_display_v3_bb_V3.pdf -------------------------------------------------------------------------------- /Fritzing/Nanocomp_display_v3_bb_V4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/Nanocomp_display_v3_bb_V4.pdf -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/breadboard/13 Pin Connector_1716bd8e60465d06cc2c9037be3058db_5_breadboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/breadboard/13 Pin Connector_1716bd8e60465d06cc2c9037be3058db_5_breadboard.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/breadboard/13 Pin Connector_ed53dca519525c56939c8931aa307e5a_1_breadboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/breadboard/13 Pin Connector_ed53dca519525c56939c8931aa307e5a_1_breadboard.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/breadboard/13 pin header_97ef2234f0c45e98dfd14db42d80216a_2_breadboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/breadboard/13 pin header_97ef2234f0c45e98dfd14db42d80216a_2_breadboard.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/breadboard/13 pin header_97ef2234f0c45e98dfd14db42d80216a_3_breadboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/breadboard/13 pin header_97ef2234f0c45e98dfd14db42d80216a_3_breadboard.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/breadboard/13 pin header_cf21fafc9d0fd70ca83cadc85036432b_5_breadboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/breadboard/13 pin header_cf21fafc9d0fd70ca83cadc85036432b_5_breadboard.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/breadboard/7_Segment_x4_0493ebde442add4d62ada424d699ee65_2_breadboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/breadboard/7_Segment_x4_0493ebde442add4d62ada424d699ee65_2_breadboard.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/breadboard/7_Segment_x4_2dfa33ee40957881a04f4a57142d2d39_10_breadboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/breadboard/7_Segment_x4_2dfa33ee40957881a04f4a57142d2d39_10_breadboard.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/breadboard/7_Segment_x4_2dfa33ee40957881a04f4a57142d2d39_8_breadboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/breadboard/7_Segment_x4_2dfa33ee40957881a04f4a57142d2d39_8_breadboard.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/breadboard/7_Segment_x4_377b971c937076c061556afb5e996d05_1_breadboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/breadboard/7_Segment_x4_377b971c937076c061556afb5e996d05_1_breadboard.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/breadboard/7_Segment_x4_d290d22e607762817d737778fdaafaf1_2_breadboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/breadboard/7_Segment_x4_d290d22e607762817d737778fdaafaf1_2_breadboard.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/breadboard/7_Segment_x4_f4ff0f4ad9aa0ce06c12b43bd10026de_2_breadboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/breadboard/7_Segment_x4_f4ff0f4ad9aa0ce06c12b43bd10026de_2_breadboard.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/breadboard/MC6809P_989f367222b5c047c5606e6b58a1d12b_1_breadboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/breadboard/MC6809P_989f367222b5c047c5606e6b58a1d12b_1_breadboard.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/breadboard/MC6809P_989f367222b5c047c5606e6b58a1d12b_5_breadboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/breadboard/MC6809P_989f367222b5c047c5606e6b58a1d12b_5_breadboard.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/breadboard/MC6809P_f971de549b9d74a0b8bd48798bff101b_1_breadboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/breadboard/MC6809P_f971de549b9d74a0b8bd48798bff101b_1_breadboard.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/breadboard/NPN_BC182L_452b883c8d05c6aae37c91bafe32add0_1_breadboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/breadboard/NPN_BC182L_452b883c8d05c6aae37c91bafe32add0_1_breadboard.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/breadboard/NPN_BC182L_8b0dcf821e3642177422417c49da8ee6_1_breadboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/breadboard/NPN_BC182L_8b0dcf821e3642177422417c49da8ee6_1_breadboard.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/breadboard/NPN_BC182L_8b0dcf821e3642177422417c49da8ee6_2_breadboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/breadboard/NPN_BC182L_8b0dcf821e3642177422417c49da8ee6_2_breadboard.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/breadboard/TrackBreak_6abcf0bfb525a837208898a0140be739_6_breadboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/breadboard/TrackBreak_6abcf0bfb525a837208898a0140be739_6_breadboard.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/breadboard/breadboardingSW_d9b79e425d93ef07428b838db7f89ad9_2_breadboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/breadboard/breadboardingSW_d9b79e425d93ef07428b838db7f89ad9_2_breadboard.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/breadboard/breadboardingSW_d9b79e425d93ef07428b838db7f89ad9_4_breadboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/breadboard/breadboardingSW_d9b79e425d93ef07428b838db7f89ad9_4_breadboard.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/breadboard/mc6809_cpu_40pin_dip_dd1384e124a0d7ade800725fdaa88797_1_breadboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/breadboard/mc6809_cpu_40pin_dip_dd1384e124a0d7ade800725fdaa88797_1_breadboard.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/breadboard/resistor-isolated-8-sip_breadboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/breadboard/resistor-isolated-8-sip_breadboard.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/icon/13 Pin Connector_1716bd8e60465d06cc2c9037be3058db_5_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/icon/13 Pin Connector_1716bd8e60465d06cc2c9037be3058db_5_icon.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/icon/13 Pin Connector_ed53dca519525c56939c8931aa307e5a_1_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/icon/13 Pin Connector_ed53dca519525c56939c8931aa307e5a_1_icon.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/icon/13 pin header_97ef2234f0c45e98dfd14db42d80216a_2_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/icon/13 pin header_97ef2234f0c45e98dfd14db42d80216a_2_icon.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/icon/13 pin header_97ef2234f0c45e98dfd14db42d80216a_3_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/icon/13 pin header_97ef2234f0c45e98dfd14db42d80216a_3_icon.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/icon/13 pin header_cf21fafc9d0fd70ca83cadc85036432b_5_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/icon/13 pin header_cf21fafc9d0fd70ca83cadc85036432b_5_icon.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/icon/7_Segment_x4_0493ebde442add4d62ada424d699ee65_2_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/icon/7_Segment_x4_0493ebde442add4d62ada424d699ee65_2_icon.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/icon/7_Segment_x4_2dfa33ee40957881a04f4a57142d2d39_10_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/icon/7_Segment_x4_2dfa33ee40957881a04f4a57142d2d39_10_icon.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/icon/7_Segment_x4_2dfa33ee40957881a04f4a57142d2d39_8_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/icon/7_Segment_x4_2dfa33ee40957881a04f4a57142d2d39_8_icon.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/icon/7_Segment_x4_377b971c937076c061556afb5e996d05_1_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/icon/7_Segment_x4_377b971c937076c061556afb5e996d05_1_icon.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/icon/7_Segment_x4_d290d22e607762817d737778fdaafaf1_2_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/icon/7_Segment_x4_d290d22e607762817d737778fdaafaf1_2_icon.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/icon/7_Segment_x4_f4ff0f4ad9aa0ce06c12b43bd10026de_2_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/icon/7_Segment_x4_f4ff0f4ad9aa0ce06c12b43bd10026de_2_icon.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/icon/MC6809P_989f367222b5c047c5606e6b58a1d12b_1_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/icon/MC6809P_989f367222b5c047c5606e6b58a1d12b_1_icon.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/icon/MC6809P_989f367222b5c047c5606e6b58a1d12b_5_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/icon/MC6809P_989f367222b5c047c5606e6b58a1d12b_5_icon.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/icon/MC6809P_f971de549b9d74a0b8bd48798bff101b_1_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/icon/MC6809P_f971de549b9d74a0b8bd48798bff101b_1_icon.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/icon/NPN_BC182L_452b883c8d05c6aae37c91bafe32add0_1_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/icon/NPN_BC182L_452b883c8d05c6aae37c91bafe32add0_1_icon.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/icon/NPN_BC182L_8b0dcf821e3642177422417c49da8ee6_1_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/icon/NPN_BC182L_8b0dcf821e3642177422417c49da8ee6_1_icon.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/icon/NPN_BC182L_8b0dcf821e3642177422417c49da8ee6_2_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/icon/NPN_BC182L_8b0dcf821e3642177422417c49da8ee6_2_icon.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/icon/TrackBreak_6abcf0bfb525a837208898a0140be739_6_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/icon/TrackBreak_6abcf0bfb525a837208898a0140be739_6_icon.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/icon/breadboardingSW_d9b79e425d93ef07428b838db7f89ad9_2_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/icon/breadboardingSW_d9b79e425d93ef07428b838db7f89ad9_2_icon.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/icon/breadboardingSW_d9b79e425d93ef07428b838db7f89ad9_4_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/icon/breadboardingSW_d9b79e425d93ef07428b838db7f89ad9_4_icon.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/icon/mc6809_cpu_40pin_dip_dd1384e124a0d7ade800725fdaa88797_1_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/icon/mc6809_cpu_40pin_dip_dd1384e124a0d7ade800725fdaa88797_1_icon.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/icon/resistor-isolated-8-sip_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/icon/resistor-isolated-8-sip_icon.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/pcb/13 Pin Connector_1716bd8e60465d06cc2c9037be3058db_5_pcb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/pcb/13 Pin Connector_1716bd8e60465d06cc2c9037be3058db_5_pcb.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/pcb/13 Pin Connector_ed53dca519525c56939c8931aa307e5a_1_pcb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/pcb/13 Pin Connector_ed53dca519525c56939c8931aa307e5a_1_pcb.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/pcb/13 pin header_97ef2234f0c45e98dfd14db42d80216a_2_pcb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/pcb/13 pin header_97ef2234f0c45e98dfd14db42d80216a_2_pcb.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/pcb/13 pin header_97ef2234f0c45e98dfd14db42d80216a_3_pcb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/pcb/13 pin header_97ef2234f0c45e98dfd14db42d80216a_3_pcb.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/pcb/13 pin header_cf21fafc9d0fd70ca83cadc85036432b_5_pcb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/pcb/13 pin header_cf21fafc9d0fd70ca83cadc85036432b_5_pcb.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/pcb/7_Segment_x4_0493ebde442add4d62ada424d699ee65_2_pcb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/pcb/7_Segment_x4_0493ebde442add4d62ada424d699ee65_2_pcb.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/pcb/7_Segment_x4_2dfa33ee40957881a04f4a57142d2d39_10_pcb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/pcb/7_Segment_x4_2dfa33ee40957881a04f4a57142d2d39_10_pcb.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/pcb/7_Segment_x4_2dfa33ee40957881a04f4a57142d2d39_8_pcb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/pcb/7_Segment_x4_2dfa33ee40957881a04f4a57142d2d39_8_pcb.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/pcb/7_Segment_x4_377b971c937076c061556afb5e996d05_1_pcb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/pcb/7_Segment_x4_377b971c937076c061556afb5e996d05_1_pcb.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/pcb/7_Segment_x4_d290d22e607762817d737778fdaafaf1_2_pcb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/pcb/7_Segment_x4_d290d22e607762817d737778fdaafaf1_2_pcb.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/pcb/7_Segment_x4_f4ff0f4ad9aa0ce06c12b43bd10026de_2_pcb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/pcb/7_Segment_x4_f4ff0f4ad9aa0ce06c12b43bd10026de_2_pcb.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/pcb/MC6809P_989f367222b5c047c5606e6b58a1d12b_1_pcb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/pcb/MC6809P_989f367222b5c047c5606e6b58a1d12b_1_pcb.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/pcb/MC6809P_989f367222b5c047c5606e6b58a1d12b_5_pcb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/pcb/MC6809P_989f367222b5c047c5606e6b58a1d12b_5_pcb.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/pcb/MC6809P_f971de549b9d74a0b8bd48798bff101b_1_pcb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/pcb/MC6809P_f971de549b9d74a0b8bd48798bff101b_1_pcb.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/pcb/NPN_BC182L_452b883c8d05c6aae37c91bafe32add0_1_pcb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/pcb/NPN_BC182L_452b883c8d05c6aae37c91bafe32add0_1_pcb.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/pcb/NPN_BC182L_8b0dcf821e3642177422417c49da8ee6_1_pcb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/pcb/NPN_BC182L_8b0dcf821e3642177422417c49da8ee6_1_pcb.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/pcb/NPN_BC182L_8b0dcf821e3642177422417c49da8ee6_2_pcb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/pcb/NPN_BC182L_8b0dcf821e3642177422417c49da8ee6_2_pcb.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/pcb/TrackBreak_6abcf0bfb525a837208898a0140be739_6_pcb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/pcb/TrackBreak_6abcf0bfb525a837208898a0140be739_6_pcb.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/pcb/breadboardingSW_d9b79e425d93ef07428b838db7f89ad9_2_pcb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/pcb/breadboardingSW_d9b79e425d93ef07428b838db7f89ad9_2_pcb.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/pcb/breadboardingSW_d9b79e425d93ef07428b838db7f89ad9_4_pcb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/pcb/breadboardingSW_d9b79e425d93ef07428b838db7f89ad9_4_pcb.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/pcb/mc6809_cpu_40pin_dip_dd1384e124a0d7ade800725fdaa88797_1_pcb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/pcb/mc6809_cpu_40pin_dip_dd1384e124a0d7ade800725fdaa88797_1_pcb.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/pcb/resistor-isolated-8-sip_pcb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/pcb/resistor-isolated-8-sip_pcb.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/schematic/13 Pin Connector_1716bd8e60465d06cc2c9037be3058db_5_schematic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/schematic/13 Pin Connector_1716bd8e60465d06cc2c9037be3058db_5_schematic.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/schematic/13 Pin Connector_ed53dca519525c56939c8931aa307e5a_1_schematic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/schematic/13 Pin Connector_ed53dca519525c56939c8931aa307e5a_1_schematic.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/schematic/13 pin header_97ef2234f0c45e98dfd14db42d80216a_2_schematic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/schematic/13 pin header_97ef2234f0c45e98dfd14db42d80216a_2_schematic.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/schematic/13 pin header_97ef2234f0c45e98dfd14db42d80216a_3_schematic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/schematic/13 pin header_97ef2234f0c45e98dfd14db42d80216a_3_schematic.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/schematic/13 pin header_cf21fafc9d0fd70ca83cadc85036432b_5_schematic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/schematic/13 pin header_cf21fafc9d0fd70ca83cadc85036432b_5_schematic.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/schematic/7_Segment_x4_0493ebde442add4d62ada424d699ee65_2_schematic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/schematic/7_Segment_x4_0493ebde442add4d62ada424d699ee65_2_schematic.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/schematic/7_Segment_x4_2dfa33ee40957881a04f4a57142d2d39_10_schematic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/schematic/7_Segment_x4_2dfa33ee40957881a04f4a57142d2d39_10_schematic.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/schematic/7_Segment_x4_2dfa33ee40957881a04f4a57142d2d39_8_schematic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/schematic/7_Segment_x4_2dfa33ee40957881a04f4a57142d2d39_8_schematic.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/schematic/7_Segment_x4_377b971c937076c061556afb5e996d05_1_schematic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/schematic/7_Segment_x4_377b971c937076c061556afb5e996d05_1_schematic.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/schematic/7_Segment_x4_d290d22e607762817d737778fdaafaf1_2_schematic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/schematic/7_Segment_x4_d290d22e607762817d737778fdaafaf1_2_schematic.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/schematic/7_Segment_x4_f4ff0f4ad9aa0ce06c12b43bd10026de_2_schematic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/schematic/7_Segment_x4_f4ff0f4ad9aa0ce06c12b43bd10026de_2_schematic.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/schematic/MC6809P_989f367222b5c047c5606e6b58a1d12b_1_schematic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/schematic/MC6809P_989f367222b5c047c5606e6b58a1d12b_1_schematic.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/schematic/MC6809P_989f367222b5c047c5606e6b58a1d12b_5_schematic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/schematic/MC6809P_989f367222b5c047c5606e6b58a1d12b_5_schematic.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/schematic/MC6809P_f971de549b9d74a0b8bd48798bff101b_1_schematic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/schematic/MC6809P_f971de549b9d74a0b8bd48798bff101b_1_schematic.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/schematic/NPN_BC182L_452b883c8d05c6aae37c91bafe32add0_1_schematic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/schematic/NPN_BC182L_452b883c8d05c6aae37c91bafe32add0_1_schematic.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/schematic/NPN_BC182L_8b0dcf821e3642177422417c49da8ee6_1_schematic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/schematic/NPN_BC182L_8b0dcf821e3642177422417c49da8ee6_1_schematic.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/schematic/NPN_BC182L_8b0dcf821e3642177422417c49da8ee6_2_schematic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/schematic/NPN_BC182L_8b0dcf821e3642177422417c49da8ee6_2_schematic.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/schematic/TrackBreak_6abcf0bfb525a837208898a0140be739_6_schematic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/schematic/TrackBreak_6abcf0bfb525a837208898a0140be739_6_schematic.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/schematic/breadboardingSW_d9b79e425d93ef07428b838db7f89ad9_2_schematic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/schematic/breadboardingSW_d9b79e425d93ef07428b838db7f89ad9_2_schematic.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/schematic/breadboardingSW_d9b79e425d93ef07428b838db7f89ad9_4_schematic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/schematic/breadboardingSW_d9b79e425d93ef07428b838db7f89ad9_4_schematic.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/schematic/mc6809_cpu_40pin_dip_dd1384e124a0d7ade800725fdaa88797_1_schematic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/schematic/mc6809_cpu_40pin_dip_dd1384e124a0d7ade800725fdaa88797_1_schematic.svg -------------------------------------------------------------------------------- /Fritzing/parts/svg/user/schematic/resistor-isolated-8-sip_schematic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/svg/user/schematic/resistor-isolated-8-sip_schematic.svg -------------------------------------------------------------------------------- /Fritzing/parts/user/13 Pin Connector_1716bd8e60465d06cc2c9037be3058db_5.fzp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/user/13 Pin Connector_1716bd8e60465d06cc2c9037be3058db_5.fzp -------------------------------------------------------------------------------- /Fritzing/parts/user/13 pin header_cf21fafc9d0fd70ca83cadc85036432b_5.fzp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/user/13 pin header_cf21fafc9d0fd70ca83cadc85036432b_5.fzp -------------------------------------------------------------------------------- /Fritzing/parts/user/7_Segment_x4_2dfa33ee40957881a04f4a57142d2d39_8.fzp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/user/7_Segment_x4_2dfa33ee40957881a04f4a57142d2d39_8.fzp -------------------------------------------------------------------------------- /Fritzing/parts/user/MC6809P_989f367222b5c047c5606e6b58a1d12b_1.fzp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/user/MC6809P_989f367222b5c047c5606e6b58a1d12b_1.fzp -------------------------------------------------------------------------------- /Fritzing/parts/user/MC6809P_f971de549b9d74a0b8bd48798bff101b_1.fzp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/user/MC6809P_f971de549b9d74a0b8bd48798bff101b_1.fzp -------------------------------------------------------------------------------- /Fritzing/parts/user/NPN_BC182L_452b883c8d05c6aae37c91bafe32add0_1.fzp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/user/NPN_BC182L_452b883c8d05c6aae37c91bafe32add0_1.fzp -------------------------------------------------------------------------------- /Fritzing/parts/user/NPN_BC182L_8b0dcf821e3642177422417c49da8ee6_1.fzp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/user/NPN_BC182L_8b0dcf821e3642177422417c49da8ee6_1.fzp -------------------------------------------------------------------------------- /Fritzing/parts/user/TrackBreak_6abcf0bfb525a837208898a0140be739_6.fzp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/user/TrackBreak_6abcf0bfb525a837208898a0140be739_6.fzp -------------------------------------------------------------------------------- /Fritzing/parts/user/breadboardingSW_d9b79e425d93ef07428b838db7f89ad9_2.fzp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/user/breadboardingSW_d9b79e425d93ef07428b838db7f89ad9_2.fzp -------------------------------------------------------------------------------- /Fritzing/parts/user/mc6809_cpu_40pin_dip_dd1384e124a0d7ade800725fdaa88797_1.fzp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/user/mc6809_cpu_40pin_dip_dd1384e124a0d7ade800725fdaa88797_1.fzp -------------------------------------------------------------------------------- /Fritzing/parts/user/resistor-isolated-8-sip.fzp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/parts/user/resistor-isolated-8-sip.fzp -------------------------------------------------------------------------------- /Fritzing/resistor-network-8x220.fzpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/resistor-network-8x220.fzpz -------------------------------------------------------------------------------- /Fritzing/svg/13_pin_socket_bb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/svg/13_pin_socket_bb.svg -------------------------------------------------------------------------------- /Fritzing/svg/13_pin_socket_schem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/svg/13_pin_socket_schem.svg -------------------------------------------------------------------------------- /Fritzing/svg/7segment_x4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/svg/7segment_x4.svg -------------------------------------------------------------------------------- /Fritzing/svg/7segment_x4_schematic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/svg/7segment_x4_schematic.svg -------------------------------------------------------------------------------- /Fritzing/svg/key_swicth_large.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/svg/key_swicth_large.svg -------------------------------------------------------------------------------- /Fritzing/svg/key_swicth_medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/svg/key_swicth_medium.svg -------------------------------------------------------------------------------- /Fritzing/svg/key_switch_125mm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/svg/key_switch_125mm.svg -------------------------------------------------------------------------------- /Fritzing/svg/key_switch_622mm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/svg/key_switch_622mm.svg -------------------------------------------------------------------------------- /Fritzing/svg/mc6809_dip40_bb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/svg/mc6809_dip40_bb.svg -------------------------------------------------------------------------------- /Fritzing/svg/track_break.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Fritzing/svg/track_break.svg -------------------------------------------------------------------------------- /Kicad/Breadboarding.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Breadboarding.kicad_sym -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-06-08_223133.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-06-08_223133.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-06-08_230223.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-06-08_230223.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-06-09_003644.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-06-09_003644.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-06-09_005056.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-06-09_005056.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-06-09_010557.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-06-09_010557.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-06-15_223130.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-06-15_223130.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-06-15_225611.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-06-15_225611.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-06-22_005427.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-06-22_005427.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-06-22_235030.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-06-22_235030.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-06-23_001028.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-06-23_001028.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-06-23_231851.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-06-23_231851.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-06-24_005023.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-06-24_005023.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-06-24_005827.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-06-24_005827.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-06-26_195717.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-06-26_195717.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-07-04_192709.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-07-04_192709.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-08-10_152020.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-08-10_152020.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-08-10_154037.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-08-10_154037.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-08-10_155945.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-08-10_155945.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-08-10_160819.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-08-10_160819.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-08-10_231857.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-08-10_231857.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-08-12_154846.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-08-12_154846.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-09-12_001039.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-09-12_001039.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-09-28_134817.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-09-28_134817.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-09-28_135753.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-09-28_135753.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-09-28_200704.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-09-28_200704.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-11-01_191548.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V1/Nanocomp6809V1-backups/Nanocomp6809V1-2022-11-01_191548.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V1/Nanocomp6809V1.00.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V1/Nanocomp6809V1.00.pdf -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V1/Nanocomp6809V1.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 20211014) (generator pcbnew) 2 | ) -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V1/Nanocomp6809V1.kicad_prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V1/Nanocomp6809V1.kicad_prl -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V1/Nanocomp6809V1.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V1/Nanocomp6809V1.kicad_pro -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V1/Nanocomp6809V1.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V1/Nanocomp6809V1.kicad_sch -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V1/Nanocomp6809V1.kicad_sch-bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V1/Nanocomp6809V1.kicad_sch-bak -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V1/Nanocomp6809V1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V1/Nanocomp6809V1.pdf -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V1/fp-info-cache: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V1/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V1/sym-lib-table -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V11/Nanocomp6809V11.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 20211014) (generator pcbnew) 2 | ) -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V11/Nanocomp6809V11.kicad_prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V11/Nanocomp6809V11.kicad_prl -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V11/Nanocomp6809V11.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V11/Nanocomp6809V11.kicad_pro -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V11/Nanocomp6809V11.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V11/Nanocomp6809V11.kicad_sch -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V11/Nanocomp6809V11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V11/Nanocomp6809V11.pdf -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V11/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V11/sym-lib-table -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V2/Nanocomp6809V2-backups/Nanocomp6809V2-2022-10-12_212457.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V2/Nanocomp6809V2-backups/Nanocomp6809V2-2022-10-12_212457.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V2/Nanocomp6809V2-backups/Nanocomp6809V2-2022-10-12_215557.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V2/Nanocomp6809V2-backups/Nanocomp6809V2-2022-10-12_215557.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V2/Nanocomp6809V2-backups/Nanocomp6809V2-2022-10-12_222939.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V2/Nanocomp6809V2-backups/Nanocomp6809V2-2022-10-12_222939.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V2/Nanocomp6809V2-backups/Nanocomp6809V2-2022-10-12_231540.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V2/Nanocomp6809V2-backups/Nanocomp6809V2-2022-10-12_231540.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V2/Nanocomp6809V2-backups/Nanocomp6809V2-2022-10-12_234307.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V2/Nanocomp6809V2-backups/Nanocomp6809V2-2022-10-12_234307.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V2/Nanocomp6809V2-backups/Nanocomp6809V2-2022-10-14_153355.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V2/Nanocomp6809V2-backups/Nanocomp6809V2-2022-10-14_153355.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V2/Nanocomp6809V2-backups/Nanocomp6809V2-2022-10-14_225348.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V2/Nanocomp6809V2-backups/Nanocomp6809V2-2022-10-14_225348.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V2/Nanocomp6809V2-backups/Nanocomp6809V2-2022-10-18_224639.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V2/Nanocomp6809V2-backups/Nanocomp6809V2-2022-10-18_224639.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V2/Nanocomp6809V2-backups/Nanocomp6809V2-2022-11-01_190147.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V2/Nanocomp6809V2-backups/Nanocomp6809V2-2022-11-01_190147.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V2/Nanocomp6809V2-backups/Nanocomp6809V2-2022-11-01_191040.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V2/Nanocomp6809V2-backups/Nanocomp6809V2-2022-11-01_191040.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V2/Nanocomp6809V2.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 20211014) (generator pcbnew) 2 | ) -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V2/Nanocomp6809V2.kicad_prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V2/Nanocomp6809V2.kicad_prl -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V2/Nanocomp6809V2.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V2/Nanocomp6809V2.kicad_pro -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V2/Nanocomp6809V2.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V2/Nanocomp6809V2.kicad_sch -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V2/Nanocomp6809V2.kicad_sch-bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V2/Nanocomp6809V2.kicad_sch-bak -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V2/Nanocomp6809V2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V2/Nanocomp6809V2.pdf -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V2/fp-info-cache: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V2/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V2/sym-lib-table -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V3/Nanocomp6809V3.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 20211014) (generator pcbnew) 2 | ) -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V3/Nanocomp6809V3.kicad_prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V3/Nanocomp6809V3.kicad_prl -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V3/Nanocomp6809V3.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V3/Nanocomp6809V3.kicad_pro -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V3/Nanocomp6809V3.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V3/Nanocomp6809V3.kicad_sch -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V3/Nanocomp6809V3.kicad_sch-bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V3/Nanocomp6809V3.kicad_sch-bak -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V3/Nanocomp6809V3.kicad_sch.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V3/Nanocomp6809V3.kicad_sch.bak -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V3/Nanocomp6809V3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V3/Nanocomp6809V3.pdf -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V3/fp-info-cache: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V3/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V3/sym-lib-table -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V4/Nanocomp6809V4.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 20211014) (generator pcbnew) 2 | ) -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V4/Nanocomp6809V4.kicad_prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V4/Nanocomp6809V4.kicad_prl -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V4/Nanocomp6809V4.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V4/Nanocomp6809V4.kicad_pro -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V4/Nanocomp6809V4.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V4/Nanocomp6809V4.kicad_sch -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V4/Nanocomp6809V4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V4/Nanocomp6809V4.pdf -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V4/fp-info-cache: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V4/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V4/sym-lib-table -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V5/Nanocomp6809V5.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 20211014) (generator pcbnew) 2 | ) -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V5/Nanocomp6809V5.kicad_prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V5/Nanocomp6809V5.kicad_prl -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V5/Nanocomp6809V5.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V5/Nanocomp6809V5.kicad_pro -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V5/Nanocomp6809V5.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V5/Nanocomp6809V5.kicad_sch -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V5/Nanocomp6809V5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V5/Nanocomp6809V5.pdf -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V5/fp-info-cache: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V5/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V5/sym-lib-table -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V6/Nanocomp6809V5.kicad_prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V6/Nanocomp6809V5.kicad_prl -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V6/Nanocomp6809V6-backups/Nanocomp6809V6-2022-12-04_002320.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V6/Nanocomp6809V6-backups/Nanocomp6809V6-2022-12-04_002320.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V6/Nanocomp6809V6-backups/Nanocomp6809V6-2022-12-06_001834.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V6/Nanocomp6809V6-backups/Nanocomp6809V6-2022-12-06_001834.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V6/Nanocomp6809V6-backups/Nanocomp6809V6-2022-12-08_225359.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V6/Nanocomp6809V6-backups/Nanocomp6809V6-2022-12-08_225359.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V6/Nanocomp6809V6-backups/Nanocomp6809V6-2022-12-08_233505.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V6/Nanocomp6809V6-backups/Nanocomp6809V6-2022-12-08_233505.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V6/Nanocomp6809V6-backups/Nanocomp6809V6-2022-12-10_214751.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V6/Nanocomp6809V6-backups/Nanocomp6809V6-2022-12-10_214751.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V6/Nanocomp6809V6.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 20211014) (generator pcbnew) 2 | ) -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V6/Nanocomp6809V6.kicad_prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V6/Nanocomp6809V6.kicad_prl -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V6/Nanocomp6809V6.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V6/Nanocomp6809V6.kicad_pro -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V6/Nanocomp6809V6.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V6/Nanocomp6809V6.kicad_sch -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V6/Nanocomp6809V6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V6/Nanocomp6809V6.pdf -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V6/fp-info-cache: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V6/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V6/sym-lib-table -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V7/Nanocomp6809V7-backups/Nanocomp6809V7-2022-12-09_005637.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V7/Nanocomp6809V7-backups/Nanocomp6809V7-2022-12-09_005637.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V7/Nanocomp6809V7-backups/Nanocomp6809V7-2022-12-10_184826.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V7/Nanocomp6809V7-backups/Nanocomp6809V7-2022-12-10_184826.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V7/Nanocomp6809V7-backups/Nanocomp6809V7-2022-12-10_214932.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V7/Nanocomp6809V7-backups/Nanocomp6809V7-2022-12-10_214932.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V7/Nanocomp6809V7-backups/Nanocomp6809V7-2022-12-11_190128.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V7/Nanocomp6809V7-backups/Nanocomp6809V7-2022-12-11_190128.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V7/Nanocomp6809V7-backups/Nanocomp6809V7-2022-12-12_195301.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V7/Nanocomp6809V7-backups/Nanocomp6809V7-2022-12-12_195301.zip -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V7/Nanocomp6809V7.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 20211014) (generator pcbnew) 2 | ) -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V7/Nanocomp6809V7.kicad_prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V7/Nanocomp6809V7.kicad_prl -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V7/Nanocomp6809V7.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V7/Nanocomp6809V7.kicad_pro -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V7/Nanocomp6809V7.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V7/Nanocomp6809V7.kicad_sch -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V7/Nanocomp6809V7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V7/Nanocomp6809V7.pdf -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V7/fp-info-cache: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V7/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V7/sym-lib-table -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V8/Nanocomp6809V8.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 20211014) (generator pcbnew) 2 | ) -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V8/Nanocomp6809V8.kicad_prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V8/Nanocomp6809V8.kicad_prl -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V8/Nanocomp6809V8.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V8/Nanocomp6809V8.kicad_pro -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V8/Nanocomp6809V8.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V8/Nanocomp6809V8.kicad_sch -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V8/Nanocomp6809V8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V8/Nanocomp6809V8.pdf -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V8/Nanocomp6809V8MuxVersion.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V8/Nanocomp6809V8MuxVersion.pdf -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V8/fp-info-cache: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V8/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V8/sym-lib-table -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V9/Nanocomp6809V9.kicad_pcb: -------------------------------------------------------------------------------- 1 | (kicad_pcb (version 20211014) (generator pcbnew) 2 | ) -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V9/Nanocomp6809V9.kicad_prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V9/Nanocomp6809V9.kicad_prl -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V9/Nanocomp6809V9.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V9/Nanocomp6809V9.kicad_pro -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V9/Nanocomp6809V9.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V9/Nanocomp6809V9.kicad_sch -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V9/Nanocomp6809V9.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V9/Nanocomp6809V9.pdf -------------------------------------------------------------------------------- /Kicad/Nanocomp6809V9/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/Kicad/Nanocomp6809V9/sym-lib-table -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/LICENSE -------------------------------------------------------------------------------- /PLD/DACV1.PLD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/PLD/DACV1.PLD -------------------------------------------------------------------------------- /PLD/DACV2.PLD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/PLD/DACV2.PLD -------------------------------------------------------------------------------- /PLD/NANOCOMPV11.PLD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/PLD/NANOCOMPV11.PLD -------------------------------------------------------------------------------- /PLD/NANOCOMPV12.PLD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/PLD/NANOCOMPV12.PLD -------------------------------------------------------------------------------- /PLD/NANOCOMPV4.PLD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/PLD/NANOCOMPV4.PLD -------------------------------------------------------------------------------- /PLD/NANOCOMPV8.PLD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/PLD/NANOCOMPV8.PLD -------------------------------------------------------------------------------- /PLD/Nanocomp.jed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/PLD/Nanocomp.jed -------------------------------------------------------------------------------- /PLD/NanocompV8.jed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/PLD/NanocompV8.jed -------------------------------------------------------------------------------- /PLD/Nanocompv3.jed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/PLD/Nanocompv3.jed -------------------------------------------------------------------------------- /PLD/Nanocompv4.jed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/PLD/Nanocompv4.jed -------------------------------------------------------------------------------- /PLD/Nanocompv9.jed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/PLD/Nanocompv9.jed -------------------------------------------------------------------------------- /PLD/VGA.jed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/PLD/VGA.jed -------------------------------------------------------------------------------- /PLD/VGA1.jed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/PLD/VGA1.jed -------------------------------------------------------------------------------- /PLD/VGA2.jed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/PLD/VGA2.jed -------------------------------------------------------------------------------- /PLD/VIDEOLOGIC1V11.PLD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/PLD/VIDEOLOGIC1V11.PLD -------------------------------------------------------------------------------- /PLD/VIDEOLOGIC1V12.PLD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/PLD/VIDEOLOGIC1V12.PLD -------------------------------------------------------------------------------- /PLD/VIDEOLOGIC1V12.PLD.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/PLD/VIDEOLOGIC1V12.PLD.bak -------------------------------------------------------------------------------- /PLD/VIDEOLOGIC1V12.abs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/PLD/VIDEOLOGIC1V12.abs -------------------------------------------------------------------------------- /PLD/VIDEOLOGIC1V12.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/PLD/VIDEOLOGIC1V12.pdf -------------------------------------------------------------------------------- /PLD/VIDEOLOGIC1V12.sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/PLD/VIDEOLOGIC1V12.sim -------------------------------------------------------------------------------- /PLD/VIDEOLOGIC1V9.PLD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/PLD/VIDEOLOGIC1V9.PLD -------------------------------------------------------------------------------- /PLD/VIDEOLOGIC2.PLD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/PLD/VIDEOLOGIC2.PLD -------------------------------------------------------------------------------- /PLD/VIDEOLOGIC2V9.PLD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/PLD/VIDEOLOGIC2V9.PLD -------------------------------------------------------------------------------- /PLD/VMUXV1.PLD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/PLD/VMUXV1.PLD -------------------------------------------------------------------------------- /PLD/VRCPU1V1.PLD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/PLD/VRCPU1V1.PLD -------------------------------------------------------------------------------- /PLD/VRCPU2V1.PLD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/PLD/VRCPU2V1.PLD -------------------------------------------------------------------------------- /PLD/VRCRTC1.PLD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/PLD/VRCRTC1.PLD -------------------------------------------------------------------------------- /PLD/VRCRTC2.PLD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/PLD/VRCRTC2.PLD -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breadboardinglabs/Nanocomp6809/HEAD/README.md --------------------------------------------------------------------------------