├── .gitignore ├── A500_kyb_2Conn └── README.md ├── A500_kyb_Mitsumi ├── A500Keyboard-cache.lib ├── A500Keyboard.kicad_pcb ├── A500Keyboard.pro ├── A500Keyboard.sch ├── A500_Parts.dcm ├── A500_Parts.lib ├── A500_kyb_Mitsumi.pdf ├── A500_kyb_Mitsumi.png ├── README.md └── Reference │ └── A5kyb_nocash_schem.txt ├── Controllers ├── CD32 │ ├── CD32_Controller-cache.lib │ ├── CD32_Controller.kicad_pcb │ ├── CD32_Controller.pdf │ ├── CD32_Controller.pro │ └── CD32_Controller.sch ├── Jaguar │ ├── JagPad-cache.lib │ ├── JagPad.kicad_pcb │ ├── JagPad.pro │ ├── JagPad.sch │ └── JaguarController.pdf └── README.md ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BleuLlama/AmigaSchematics/HEAD/.gitignore -------------------------------------------------------------------------------- /A500_kyb_2Conn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BleuLlama/AmigaSchematics/HEAD/A500_kyb_2Conn/README.md -------------------------------------------------------------------------------- /A500_kyb_Mitsumi/A500Keyboard-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BleuLlama/AmigaSchematics/HEAD/A500_kyb_Mitsumi/A500Keyboard-cache.lib -------------------------------------------------------------------------------- /A500_kyb_Mitsumi/A500Keyboard.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BleuLlama/AmigaSchematics/HEAD/A500_kyb_Mitsumi/A500Keyboard.kicad_pcb -------------------------------------------------------------------------------- /A500_kyb_Mitsumi/A500Keyboard.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BleuLlama/AmigaSchematics/HEAD/A500_kyb_Mitsumi/A500Keyboard.pro -------------------------------------------------------------------------------- /A500_kyb_Mitsumi/A500Keyboard.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BleuLlama/AmigaSchematics/HEAD/A500_kyb_Mitsumi/A500Keyboard.sch -------------------------------------------------------------------------------- /A500_kyb_Mitsumi/A500_Parts.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /A500_kyb_Mitsumi/A500_Parts.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BleuLlama/AmigaSchematics/HEAD/A500_kyb_Mitsumi/A500_Parts.lib -------------------------------------------------------------------------------- /A500_kyb_Mitsumi/A500_kyb_Mitsumi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BleuLlama/AmigaSchematics/HEAD/A500_kyb_Mitsumi/A500_kyb_Mitsumi.pdf -------------------------------------------------------------------------------- /A500_kyb_Mitsumi/A500_kyb_Mitsumi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BleuLlama/AmigaSchematics/HEAD/A500_kyb_Mitsumi/A500_kyb_Mitsumi.png -------------------------------------------------------------------------------- /A500_kyb_Mitsumi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BleuLlama/AmigaSchematics/HEAD/A500_kyb_Mitsumi/README.md -------------------------------------------------------------------------------- /A500_kyb_Mitsumi/Reference/A5kyb_nocash_schem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BleuLlama/AmigaSchematics/HEAD/A500_kyb_Mitsumi/Reference/A5kyb_nocash_schem.txt -------------------------------------------------------------------------------- /Controllers/CD32/CD32_Controller-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BleuLlama/AmigaSchematics/HEAD/Controllers/CD32/CD32_Controller-cache.lib -------------------------------------------------------------------------------- /Controllers/CD32/CD32_Controller.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BleuLlama/AmigaSchematics/HEAD/Controllers/CD32/CD32_Controller.kicad_pcb -------------------------------------------------------------------------------- /Controllers/CD32/CD32_Controller.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BleuLlama/AmigaSchematics/HEAD/Controllers/CD32/CD32_Controller.pdf -------------------------------------------------------------------------------- /Controllers/CD32/CD32_Controller.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BleuLlama/AmigaSchematics/HEAD/Controllers/CD32/CD32_Controller.pro -------------------------------------------------------------------------------- /Controllers/CD32/CD32_Controller.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BleuLlama/AmigaSchematics/HEAD/Controllers/CD32/CD32_Controller.sch -------------------------------------------------------------------------------- /Controllers/Jaguar/JagPad-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BleuLlama/AmigaSchematics/HEAD/Controllers/Jaguar/JagPad-cache.lib -------------------------------------------------------------------------------- /Controllers/Jaguar/JagPad.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BleuLlama/AmigaSchematics/HEAD/Controllers/Jaguar/JagPad.kicad_pcb -------------------------------------------------------------------------------- /Controllers/Jaguar/JagPad.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BleuLlama/AmigaSchematics/HEAD/Controllers/Jaguar/JagPad.pro -------------------------------------------------------------------------------- /Controllers/Jaguar/JagPad.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BleuLlama/AmigaSchematics/HEAD/Controllers/Jaguar/JagPad.sch -------------------------------------------------------------------------------- /Controllers/Jaguar/JaguarController.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BleuLlama/AmigaSchematics/HEAD/Controllers/Jaguar/JaguarController.pdf -------------------------------------------------------------------------------- /Controllers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BleuLlama/AmigaSchematics/HEAD/Controllers/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BleuLlama/AmigaSchematics/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BleuLlama/AmigaSchematics/HEAD/README.md --------------------------------------------------------------------------------