Uploaded 3_20_2021

This commit is contained in:
MicroCoreLabs 2021-03-20 19:18:59 -07:00
parent 896f43d6f7
commit 4293d343bd
33 changed files with 102353 additions and 0 deletions

View File

@ -0,0 +1,164 @@
//
//
// File Name : ROM_Emulator
// Used on :
// Author : Ted Fried, MicroCore Labs
// Creation : 3/20/2021
//
// Description:
// ============
//
// 27Cxxx EPROM Emulator. When Teensy 4.1 run at 816Mhz the address to
// data access time is less than 200ns.
//
//------------------------------------------------------------------------
//
// Modification History:
// =====================
//
// Revision 1 3/19/2021
// Initial revision
//
//
//------------------------------------------------------------------------
//
// Copyright (c) 2021 Ted Fried
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
//
//------------------------------------------------------------------------
#include <stdint.h>
// Teensy 4.0 pin assignments
//
#define PIN_DATA0 10
#define PIN_DATA1 11
#define PIN_DATA2 12
#define PIN_DATA3 13
#define PIN_DATA4 14
#define PIN_DATA5 15
#define PIN_DATA6 16
#define PIN_DATA7 17
#define PIN_ADDR0 18
#define PIN_ADDR1 19
#define PIN_ADDR2 20
#define PIN_ADDR3 9
#define PIN_ADDR4 7
#define PIN_ADDR5 5
#define PIN_ADDR6 22
#define PIN_ADDR7 4
#define PIN_ADDR8 23
#define PIN_ADDR9 21
#define PIN_ADDR10 8
#define PIN_ADDR11 6
#define PIN_ADDR12 2
#define PIN_ADDR13 3
#define PIN_ADDR14 1
#define PIN_ADDR15 0
uint8_t memory_array[65536];
// Setup Teensy 4.0 IO's
//
void setup() {
pinMode(PIN_DATA0, OUTPUT);
pinMode(PIN_DATA1, OUTPUT);
pinMode(PIN_DATA2, OUTPUT);
pinMode(PIN_DATA3, OUTPUT);
pinMode(PIN_DATA4, OUTPUT);
pinMode(PIN_DATA5, OUTPUT);
pinMode(PIN_DATA6, OUTPUT);
pinMode(PIN_DATA7, OUTPUT);
pinMode(PIN_ADDR0, INPUT);
pinMode(PIN_ADDR1, INPUT);
pinMode(PIN_ADDR2, INPUT);
pinMode(PIN_ADDR3, INPUT);
pinMode(PIN_ADDR4, INPUT);
pinMode(PIN_ADDR5, INPUT);
pinMode(PIN_ADDR6, INPUT);
pinMode(PIN_ADDR7, INPUT);
pinMode(PIN_ADDR8, INPUT);
pinMode(PIN_ADDR9, INPUT);
pinMode(PIN_ADDR10, INPUT);
pinMode(PIN_ADDR11, INPUT);
pinMode(PIN_ADDR12, INPUT);
pinMode(PIN_ADDR13, INPUT);
pinMode(PIN_ADDR14, INPUT);
pinMode(PIN_ADDR15, INPUT);
}
// -------------------------------------------------
//
// Main loop
//
// -------------------------------------------------
void loop() {
register uint8_t data_out;
register uint16_t address;
register uint32_t GPIO6_data=0;
register uint32_t GPIO7_data=0;
register uint32_t GPIO9_data=0;
GPIO6_data = GPIO6_DR;
GPIO7_data = GPIO7_DR;
GPIO9_data = GPIO9_DR;
address = ( (GPIO6_data&0x00020000) >> 17 ) | // A0 Teensy 4.0 PIN_18 GPIO6_DR[17]
( (GPIO6_data&0x00010000) >> 15 ) | // A1 Teensy 4.0 PIN_19 GPIO6_DR[16]
( (GPIO6_data&0x04000000) >> 24 ) | // A2 Teensy 4.0 PIN_20 GPIO6_DR[26]
( (GPIO7_data&0x00000800) >> 8 ) | // A3 Teensy 4.0 PIN_9 GPIO7_DR[11]
( (GPIO7_data&0x00020000) >> 13 ) | // A4 Teensy 4.0 PIN_7 GPIO7_DR[17]
( (GPIO9_data&0x00000100) >> 3 ) | // A5 Teensy 4.0 PIN_5 GPIO9_DR[8]
( (GPIO6_data&0x01000000) >> 18 ) | // A6 Teensy 4.0 PIN_22 GPIO6_DR[24]
( (GPIO9_data&0x00000040) << 1 ) | // A7 Teensy 4.0 PIN_4 GPIO9_DR[6]
( (GPIO6_data&0x02000000) >> 17 ) | // A8 Teensy 4.0 PIN_23 GPIO6_DR[25]
( (GPIO6_data&0x08000000) >> 18 ) | // A9 Teensy 4.0 PIN_21 GPIO6_DR[27]
( (GPIO7_data&0x00010000) >> 6 ) | // A10 Teensy 4.0 PIN_8 GPIO7_DR[16]
( (GPIO7_data&0x00000400) << 1 ) | // A11 Teensy 4.0 PIN_6 GPIO7_DR[10]
( (GPIO9_data&0x00000010) << 8 ) | // A12 Teensy 4.0 PIN_2 GPIO9_DR[4]
( (GPIO9_data&0x00000020) << 8 ) | // A13 Teensy 4.0 PIN_3 GPIO9_DR[5]
( (GPIO6_data&0x00000004) << 12 ) | // A14 Teensy 4.0 PIN_1 GPIO6_DR[2]
( (GPIO6_data&0x00000008) << 12 ) ; // A15 Teensy 4.0 PIN_0 GPIO6_DR[3]
address = (0x7FFF & address); // PCjr has 32KB ROM
data_out = memory_array[address];
GPIO6_DR =((data_out & 0x80)<<15) | ((data_out & 0x40)<<17) | ((data_out & 0x30)<<14) ; // D[7:4]
GPIO7_DR = (data_out & 0x08) | ((data_out & 0x02)<<1 ) | ((data_out & 0x04)>>1) | (data_out & 0x01); // D[3:0]
}

View File

@ -0,0 +1,13 @@
BOM
------
Qty/board References Description URL
--------- ----------- ------------ -------------
3 U2, U4, U5 Bus Transceivers 3 St 3.3V ABT Octal Mouser#:595-SN74LVT245BDBR https://www.mouser.com/ProductDetail/Texas-Instruments/SN74LVT245BDBR/?qs=FM6NhYOeeBVRIGHSKl2GVg%3D%3D
1 U1 ICHEADER28_600 http://store.go4retro.com/ic-header/
2 U3 2.54MM 0.1" 15-PIN FEMALE HEADER https://www.mouser.com/ProductDetail/Gravitech/15Fx1-254mm/?qs=Vxac6xGyzPnMG7UJxd5xkg%3D%3D

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,77 @@
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,(5.1.8)-1*
G04 #@! TF.CreationDate,2021-02-05T23:49:50-08:00*
G04 #@! TF.ProjectId,ROM_Emulator,524f4d5f-456d-4756-9c61-746f722e6b69,rev?*
G04 #@! TF.SameCoordinates,Original*
G04 #@! TF.FileFunction,Soldermask,Bot*
G04 #@! TF.FilePolarity,Negative*
%FSLAX46Y46*%
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
G04 Created by KiCad (PCBNEW (5.1.8)-1) date 2021-02-05 23:49:50*
%MOMM*%
%LPD*%
G01*
G04 APERTURE LIST*
%ADD10C,1.600000*%
%ADD11O,1.600000X1.600000*%
%ADD12R,1.600000X1.600000*%
G04 APERTURE END LIST*
D10*
X179806600Y-116967000D03*
X164566600Y-116967000D03*
X179806600Y-114427000D03*
X179806600Y-111887000D03*
X179806600Y-109347000D03*
X179806600Y-106807000D03*
X179806600Y-104267000D03*
X179806600Y-101727000D03*
X179806600Y-99187000D03*
X179806600Y-96647000D03*
X179806600Y-94107000D03*
X179806600Y-91567000D03*
X179806600Y-89027000D03*
X179806600Y-86487000D03*
X179806600Y-83947000D03*
X164566600Y-114427000D03*
X164566600Y-111887000D03*
X164566600Y-109347000D03*
X164566600Y-106807000D03*
X164566600Y-104267000D03*
X164566600Y-101727000D03*
X164566600Y-99187000D03*
X164566600Y-96647000D03*
X164566600Y-94107000D03*
X164566600Y-91567000D03*
X164566600Y-89027000D03*
X164566600Y-86487000D03*
X164566600Y-83947000D03*
D11*
X182270400Y-83947000D03*
X167030400Y-116967000D03*
X182270400Y-86487000D03*
X167030400Y-114427000D03*
X182270400Y-89027000D03*
X167030400Y-111887000D03*
X182270400Y-91567000D03*
X167030400Y-109347000D03*
X182270400Y-94107000D03*
X167030400Y-106807000D03*
X182270400Y-96647000D03*
X167030400Y-104267000D03*
X182270400Y-99187000D03*
X167030400Y-101727000D03*
X182270400Y-101727000D03*
X167030400Y-99187000D03*
X182270400Y-104267000D03*
X167030400Y-96647000D03*
X182270400Y-106807000D03*
X167030400Y-94107000D03*
X182270400Y-109347000D03*
X167030400Y-91567000D03*
X182270400Y-111887000D03*
X167030400Y-89027000D03*
X182270400Y-114427000D03*
X167030400Y-86487000D03*
X182270400Y-116967000D03*
D12*
X167030400Y-83947000D03*
M02*

View File

@ -0,0 +1,15 @@
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,(5.1.8)-1*
G04 #@! TF.CreationDate,2021-02-05T23:49:50-08:00*
G04 #@! TF.ProjectId,ROM_Emulator,524f4d5f-456d-4756-9c61-746f722e6b69,rev?*
G04 #@! TF.SameCoordinates,Original*
G04 #@! TF.FileFunction,Paste,Bot*
G04 #@! TF.FilePolarity,Positive*
%FSLAX46Y46*%
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
G04 Created by KiCad (PCBNEW (5.1.8)-1) date 2021-02-05 23:49:50*
%MOMM*%
%LPD*%
G01*
G04 APERTURE LIST*
G04 APERTURE END LIST*
M02*

View File

@ -0,0 +1,131 @@
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,(5.1.8)-1*
G04 #@! TF.CreationDate,2021-02-05T23:49:50-08:00*
G04 #@! TF.ProjectId,ROM_Emulator,524f4d5f-456d-4756-9c61-746f722e6b69,rev?*
G04 #@! TF.SameCoordinates,Original*
G04 #@! TF.FileFunction,Legend,Bot*
G04 #@! TF.FilePolarity,Positive*
%FSLAX46Y46*%
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
G04 Created by KiCad (PCBNEW (5.1.8)-1) date 2021-02-05 23:49:50*
%MOMM*%
%LPD*%
G01*
G04 APERTURE LIST*
%ADD10C,0.127000*%
G04 APERTURE END LIST*
D10*
X165004447Y-82119409D02*
X165004447Y-82530647D01*
X164980257Y-82579028D01*
X164956066Y-82603219D01*
X164907685Y-82627409D01*
X164810923Y-82627409D01*
X164762542Y-82603219D01*
X164738352Y-82579028D01*
X164714161Y-82530647D01*
X164714161Y-82119409D01*
X164520638Y-82119409D02*
X164206161Y-82119409D01*
X164375495Y-82312933D01*
X164302923Y-82312933D01*
X164254542Y-82337123D01*
X164230352Y-82361314D01*
X164206161Y-82409695D01*
X164206161Y-82530647D01*
X164230352Y-82579028D01*
X164254542Y-82603219D01*
X164302923Y-82627409D01*
X164448066Y-82627409D01*
X164496447Y-82603219D01*
X164520638Y-82579028D01*
X180193647Y-82094009D02*
X180193647Y-82505247D01*
X180169457Y-82553628D01*
X180145266Y-82577819D01*
X180096885Y-82602009D01*
X180000123Y-82602009D01*
X179951742Y-82577819D01*
X179927552Y-82553628D01*
X179903361Y-82505247D01*
X179903361Y-82094009D01*
X179709838Y-82094009D02*
X179395361Y-82094009D01*
X179564695Y-82287533D01*
X179492123Y-82287533D01*
X179443742Y-82311723D01*
X179419552Y-82335914D01*
X179395361Y-82384295D01*
X179395361Y-82505247D01*
X179419552Y-82553628D01*
X179443742Y-82577819D01*
X179492123Y-82602009D01*
X179637266Y-82602009D01*
X179685647Y-82577819D01*
X179709838Y-82553628D01*
X183048123Y-82119409D02*
X183048123Y-82240361D01*
X183169076Y-82191980D02*
X183048123Y-82240361D01*
X182927171Y-82191980D01*
X183120695Y-82337123D02*
X183048123Y-82240361D01*
X182975552Y-82337123D01*
X182733647Y-82119409D02*
X182733647Y-82530647D01*
X182709457Y-82579028D01*
X182685266Y-82603219D01*
X182636885Y-82627409D01*
X182540123Y-82627409D01*
X182491742Y-82603219D01*
X182467552Y-82579028D01*
X182443361Y-82530647D01*
X182443361Y-82119409D01*
X181935361Y-82627409D02*
X182225647Y-82627409D01*
X182080504Y-82627409D02*
X182080504Y-82119409D01*
X182128885Y-82191980D01*
X182177266Y-82240361D01*
X182225647Y-82264552D01*
X181645076Y-82119409D02*
X181645076Y-82240361D01*
X181766028Y-82191980D02*
X181645076Y-82240361D01*
X181524123Y-82191980D01*
X181717647Y-82337123D02*
X181645076Y-82240361D01*
X181572504Y-82337123D01*
X167808123Y-82094009D02*
X167808123Y-82214961D01*
X167929076Y-82166580D02*
X167808123Y-82214961D01*
X167687171Y-82166580D01*
X167880695Y-82311723D02*
X167808123Y-82214961D01*
X167735552Y-82311723D01*
X167493647Y-82094009D02*
X167493647Y-82505247D01*
X167469457Y-82553628D01*
X167445266Y-82577819D01*
X167396885Y-82602009D01*
X167300123Y-82602009D01*
X167251742Y-82577819D01*
X167227552Y-82553628D01*
X167203361Y-82505247D01*
X167203361Y-82094009D01*
X166695361Y-82602009D02*
X166985647Y-82602009D01*
X166840504Y-82602009D02*
X166840504Y-82094009D01*
X166888885Y-82166580D01*
X166937266Y-82214961D01*
X166985647Y-82239152D01*
X166405076Y-82094009D02*
X166405076Y-82214961D01*
X166526028Y-82166580D02*
X166405076Y-82214961D01*
X166284123Y-82166580D01*
X166477647Y-82311723D02*
X166405076Y-82214961D01*
X166332504Y-82311723D01*
M02*

View File

@ -0,0 +1,35 @@
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,(5.1.8)-1*
G04 #@! TF.CreationDate,2021-02-05T23:49:50-08:00*
G04 #@! TF.ProjectId,ROM_Emulator,524f4d5f-456d-4756-9c61-746f722e6b69,rev?*
G04 #@! TF.SameCoordinates,Original*
G04 #@! TF.FileFunction,Profile,NP*
%FSLAX46Y46*%
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
G04 Created by KiCad (PCBNEW (5.1.8)-1) date 2021-02-05 23:49:50*
%MOMM*%
%LPD*%
G01*
G04 APERTURE LIST*
G04 #@! TA.AperFunction,Profile*
%ADD10C,0.050000*%
G04 #@! TD*
G04 APERTURE END LIST*
D10*
X164277466Y-118592600D02*
G75*
G03*
X164277466Y-118592600I-1666666J0D01*
G01*
X160110800Y-118592600D02*
X165110800Y-118592600D01*
X162610800Y-116092600D02*
X162610800Y-121092600D01*
X162610800Y-118592600D02*
X162610800Y-81534000D01*
X184124600Y-118592600D02*
X162610800Y-118592600D01*
X184124600Y-81534000D02*
X184124600Y-118592600D01*
X162610800Y-81534000D02*
X184124600Y-81534000D01*
M02*

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,431 @@
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,(5.1.8)-1*
G04 #@! TF.CreationDate,2021-02-05T23:49:50-08:00*
G04 #@! TF.ProjectId,ROM_Emulator,524f4d5f-456d-4756-9c61-746f722e6b69,rev?*
G04 #@! TF.SameCoordinates,Original*
G04 #@! TF.FileFunction,Legend,Top*
G04 #@! TF.FilePolarity,Positive*
%FSLAX46Y46*%
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
G04 Created by KiCad (PCBNEW (5.1.8)-1) date 2021-02-05 23:49:50*
%MOMM*%
%LPD*%
G01*
G04 APERTURE LIST*
%ADD10C,0.127000*%
%ADD11C,0.150000*%
%ADD12C,0.120000*%
G04 APERTURE END LIST*
D10*
X167138047Y-82297209D02*
X167138047Y-81789209D01*
X167307380Y-82152066D01*
X167476714Y-81789209D01*
X167476714Y-82297209D01*
X167718619Y-82297209D02*
X167718619Y-81958542D01*
X167718619Y-81789209D02*
X167694428Y-81813400D01*
X167718619Y-81837590D01*
X167742809Y-81813400D01*
X167718619Y-81789209D01*
X167718619Y-81837590D01*
X168178238Y-82273019D02*
X168129857Y-82297209D01*
X168033095Y-82297209D01*
X167984714Y-82273019D01*
X167960523Y-82248828D01*
X167936333Y-82200447D01*
X167936333Y-82055304D01*
X167960523Y-82006923D01*
X167984714Y-81982733D01*
X168033095Y-81958542D01*
X168129857Y-81958542D01*
X168178238Y-81982733D01*
X168395952Y-82297209D02*
X168395952Y-81958542D01*
X168395952Y-82055304D02*
X168420142Y-82006923D01*
X168444333Y-81982733D01*
X168492714Y-81958542D01*
X168541095Y-81958542D01*
X168783000Y-82297209D02*
X168734619Y-82273019D01*
X168710428Y-82248828D01*
X168686238Y-82200447D01*
X168686238Y-82055304D01*
X168710428Y-82006923D01*
X168734619Y-81982733D01*
X168783000Y-81958542D01*
X168855571Y-81958542D01*
X168903952Y-81982733D01*
X168928142Y-82006923D01*
X168952333Y-82055304D01*
X168952333Y-82200447D01*
X168928142Y-82248828D01*
X168903952Y-82273019D01*
X168855571Y-82297209D01*
X168783000Y-82297209D01*
X169460333Y-82248828D02*
X169436142Y-82273019D01*
X169363571Y-82297209D01*
X169315190Y-82297209D01*
X169242619Y-82273019D01*
X169194238Y-82224638D01*
X169170047Y-82176257D01*
X169145857Y-82079495D01*
X169145857Y-82006923D01*
X169170047Y-81910161D01*
X169194238Y-81861780D01*
X169242619Y-81813400D01*
X169315190Y-81789209D01*
X169363571Y-81789209D01*
X169436142Y-81813400D01*
X169460333Y-81837590D01*
X169750619Y-82297209D02*
X169702238Y-82273019D01*
X169678047Y-82248828D01*
X169653857Y-82200447D01*
X169653857Y-82055304D01*
X169678047Y-82006923D01*
X169702238Y-81982733D01*
X169750619Y-81958542D01*
X169823190Y-81958542D01*
X169871571Y-81982733D01*
X169895761Y-82006923D01*
X169919952Y-82055304D01*
X169919952Y-82200447D01*
X169895761Y-82248828D01*
X169871571Y-82273019D01*
X169823190Y-82297209D01*
X169750619Y-82297209D01*
X170137666Y-82297209D02*
X170137666Y-81958542D01*
X170137666Y-82055304D02*
X170161857Y-82006923D01*
X170186047Y-81982733D01*
X170234428Y-81958542D01*
X170282809Y-81958542D01*
X170645666Y-82273019D02*
X170597285Y-82297209D01*
X170500523Y-82297209D01*
X170452142Y-82273019D01*
X170427952Y-82224638D01*
X170427952Y-82031114D01*
X170452142Y-81982733D01*
X170500523Y-81958542D01*
X170597285Y-81958542D01*
X170645666Y-81982733D01*
X170669857Y-82031114D01*
X170669857Y-82079495D01*
X170427952Y-82127876D01*
X171516523Y-82297209D02*
X171274619Y-82297209D01*
X171274619Y-81789209D01*
X171903571Y-82297209D02*
X171903571Y-82031114D01*
X171879380Y-81982733D01*
X171831000Y-81958542D01*
X171734238Y-81958542D01*
X171685857Y-81982733D01*
X171903571Y-82273019D02*
X171855190Y-82297209D01*
X171734238Y-82297209D01*
X171685857Y-82273019D01*
X171661666Y-82224638D01*
X171661666Y-82176257D01*
X171685857Y-82127876D01*
X171734238Y-82103685D01*
X171855190Y-82103685D01*
X171903571Y-82079495D01*
X172145476Y-82297209D02*
X172145476Y-81789209D01*
X172145476Y-81982733D02*
X172193857Y-81958542D01*
X172290619Y-81958542D01*
X172339000Y-81982733D01*
X172363190Y-82006923D01*
X172387380Y-82055304D01*
X172387380Y-82200447D01*
X172363190Y-82248828D01*
X172339000Y-82273019D01*
X172290619Y-82297209D01*
X172193857Y-82297209D01*
X172145476Y-82273019D01*
X172580904Y-82273019D02*
X172629285Y-82297209D01*
X172726047Y-82297209D01*
X172774428Y-82273019D01*
X172798619Y-82224638D01*
X172798619Y-82200447D01*
X172774428Y-82152066D01*
X172726047Y-82127876D01*
X172653476Y-82127876D01*
X172605095Y-82103685D01*
X172580904Y-82055304D01*
X172580904Y-82031114D01*
X172605095Y-81982733D01*
X172653476Y-81958542D01*
X172726047Y-81958542D01*
X172774428Y-81982733D01*
X173403380Y-82103685D02*
X173790428Y-82103685D01*
X174709666Y-82297209D02*
X174540333Y-82055304D01*
X174419380Y-82297209D02*
X174419380Y-81789209D01*
X174612904Y-81789209D01*
X174661285Y-81813400D01*
X174685476Y-81837590D01*
X174709666Y-81885971D01*
X174709666Y-81958542D01*
X174685476Y-82006923D01*
X174661285Y-82031114D01*
X174612904Y-82055304D01*
X174419380Y-82055304D01*
X175024142Y-81789209D02*
X175120904Y-81789209D01*
X175169285Y-81813400D01*
X175217666Y-81861780D01*
X175241857Y-81958542D01*
X175241857Y-82127876D01*
X175217666Y-82224638D01*
X175169285Y-82273019D01*
X175120904Y-82297209D01*
X175024142Y-82297209D01*
X174975761Y-82273019D01*
X174927380Y-82224638D01*
X174903190Y-82127876D01*
X174903190Y-81958542D01*
X174927380Y-81861780D01*
X174975761Y-81813400D01*
X175024142Y-81789209D01*
X175459571Y-82297209D02*
X175459571Y-81789209D01*
X175628904Y-82152066D01*
X175798238Y-81789209D01*
X175798238Y-82297209D01*
X176427190Y-82031114D02*
X176596523Y-82031114D01*
X176669095Y-82297209D02*
X176427190Y-82297209D01*
X176427190Y-81789209D01*
X176669095Y-81789209D01*
X176886809Y-82297209D02*
X176886809Y-81958542D01*
X176886809Y-82006923D02*
X176910999Y-81982733D01*
X176959380Y-81958542D01*
X177031952Y-81958542D01*
X177080333Y-81982733D01*
X177104523Y-82031114D01*
X177104523Y-82297209D01*
X177104523Y-82031114D02*
X177128714Y-81982733D01*
X177177095Y-81958542D01*
X177249666Y-81958542D01*
X177298047Y-81982733D01*
X177322238Y-82031114D01*
X177322238Y-82297209D01*
X177781857Y-81958542D02*
X177781857Y-82297209D01*
X177564142Y-81958542D02*
X177564142Y-82224638D01*
X177588333Y-82273019D01*
X177636714Y-82297209D01*
X177709285Y-82297209D01*
X177757666Y-82273019D01*
X177781857Y-82248828D01*
X178096333Y-82297209D02*
X178047952Y-82273019D01*
X178023761Y-82224638D01*
X178023761Y-81789209D01*
X178507571Y-82297209D02*
X178507571Y-82031114D01*
X178483380Y-81982733D01*
X178435000Y-81958542D01*
X178338238Y-81958542D01*
X178289857Y-81982733D01*
X178507571Y-82273019D02*
X178459190Y-82297209D01*
X178338238Y-82297209D01*
X178289857Y-82273019D01*
X178265666Y-82224638D01*
X178265666Y-82176257D01*
X178289857Y-82127876D01*
X178338238Y-82103685D01*
X178459190Y-82103685D01*
X178507571Y-82079495D01*
X178676904Y-81958542D02*
X178870428Y-81958542D01*
X178749476Y-81789209D02*
X178749476Y-82224638D01*
X178773666Y-82273019D01*
X178822047Y-82297209D01*
X178870428Y-82297209D01*
X179112333Y-82297209D02*
X179063952Y-82273019D01*
X179039761Y-82248828D01*
X179015571Y-82200447D01*
X179015571Y-82055304D01*
X179039761Y-82006923D01*
X179063952Y-81982733D01*
X179112333Y-81958542D01*
X179184904Y-81958542D01*
X179233285Y-81982733D01*
X179257476Y-82006923D01*
X179281666Y-82055304D01*
X179281666Y-82200447D01*
X179257476Y-82248828D01*
X179233285Y-82273019D01*
X179184904Y-82297209D01*
X179112333Y-82297209D01*
X179499380Y-82297209D02*
X179499380Y-81958542D01*
X179499380Y-82055304D02*
X179523571Y-82006923D01*
X179547761Y-81982733D01*
X179596142Y-81958542D01*
X179644523Y-81958542D01*
D11*
X181076600Y-82677000D02*
X181076600Y-118237000D01*
X181076600Y-118237000D02*
X163296600Y-118237000D01*
X163296600Y-118237000D02*
X163296600Y-82677000D01*
X163296600Y-82677000D02*
X181076600Y-82677000D01*
D12*
X170747400Y-83890200D02*
X169057400Y-83890200D01*
X170747400Y-83615200D02*
X170747400Y-83890200D01*
X173507400Y-83615200D02*
X170747400Y-83615200D01*
X176267400Y-83615200D02*
X176267400Y-83890200D01*
X173507400Y-83615200D02*
X176267400Y-83615200D01*
X170747400Y-91035200D02*
X170747400Y-90760200D01*
X173507400Y-91035200D02*
X170747400Y-91035200D01*
X176267400Y-91035200D02*
X176267400Y-90760200D01*
X173507400Y-91035200D02*
X176267400Y-91035200D01*
X173634400Y-103633600D02*
X176394400Y-103633600D01*
X176394400Y-103633600D02*
X176394400Y-103358600D01*
X173634400Y-103633600D02*
X170874400Y-103633600D01*
X170874400Y-103633600D02*
X170874400Y-103358600D01*
X173634400Y-96213600D02*
X176394400Y-96213600D01*
X176394400Y-96213600D02*
X176394400Y-96488600D01*
X173634400Y-96213600D02*
X170874400Y-96213600D01*
X170874400Y-96213600D02*
X170874400Y-96488600D01*
X170874400Y-96488600D02*
X169184400Y-96488600D01*
X173583600Y-115266800D02*
X176343600Y-115266800D01*
X176343600Y-115266800D02*
X176343600Y-114991800D01*
X173583600Y-115266800D02*
X170823600Y-115266800D01*
X170823600Y-115266800D02*
X170823600Y-114991800D01*
X173583600Y-107846800D02*
X176343600Y-107846800D01*
X176343600Y-107846800D02*
X176343600Y-108121800D01*
X173583600Y-107846800D02*
X170823600Y-107846800D01*
X170823600Y-107846800D02*
X170823600Y-108121800D01*
X170823600Y-108121800D02*
X169133600Y-108121800D01*
X173650400Y-82617000D02*
X168190400Y-82617000D01*
X168190400Y-82617000D02*
X168190400Y-118297000D01*
X168190400Y-118297000D02*
X181110400Y-118297000D01*
X181110400Y-118297000D02*
X181110400Y-82617000D01*
X181110400Y-82617000D02*
X175650400Y-82617000D01*
X175650400Y-82617000D02*
G75*
G02*
X173650400Y-82617000I-1000000J0D01*
G01*
D11*
X172567695Y-86625180D02*
X172567695Y-87434704D01*
X172615314Y-87529942D01*
X172662933Y-87577561D01*
X172758171Y-87625180D01*
X172948647Y-87625180D01*
X173043885Y-87577561D01*
X173091504Y-87529942D01*
X173139123Y-87434704D01*
X173139123Y-86625180D01*
X174091504Y-86625180D02*
X173615314Y-86625180D01*
X173567695Y-87101371D01*
X173615314Y-87053752D01*
X173710552Y-87006133D01*
X173948647Y-87006133D01*
X174043885Y-87053752D01*
X174091504Y-87101371D01*
X174139123Y-87196609D01*
X174139123Y-87434704D01*
X174091504Y-87529942D01*
X174043885Y-87577561D01*
X173948647Y-87625180D01*
X173710552Y-87625180D01*
X173615314Y-87577561D01*
X173567695Y-87529942D01*
X172770895Y-98918780D02*
X172770895Y-99728304D01*
X172818514Y-99823542D01*
X172866133Y-99871161D01*
X172961371Y-99918780D01*
X173151847Y-99918780D01*
X173247085Y-99871161D01*
X173294704Y-99823542D01*
X173342323Y-99728304D01*
X173342323Y-98918780D01*
X174247085Y-99252114D02*
X174247085Y-99918780D01*
X174008990Y-98871161D02*
X173770895Y-99585447D01*
X174389942Y-99585447D01*
X172720095Y-111085380D02*
X172720095Y-111894904D01*
X172767714Y-111990142D01*
X172815333Y-112037761D01*
X172910571Y-112085380D01*
X173101047Y-112085380D01*
X173196285Y-112037761D01*
X173243904Y-111990142D01*
X173291523Y-111894904D01*
X173291523Y-111085380D01*
X173720095Y-111180619D02*
X173767714Y-111133000D01*
X173862952Y-111085380D01*
X174101047Y-111085380D01*
X174196285Y-111133000D01*
X174243904Y-111180619D01*
X174291523Y-111275857D01*
X174291523Y-111371095D01*
X174243904Y-111513952D01*
X173672476Y-112085380D01*
X174291523Y-112085380D01*
M02*

View File

@ -0,0 +1,197 @@
%!PS-Adobe-3.0
%%Creator: PCBNEW
%%CreationDate: Fri Feb 05 23:49:58 2021
%%Title: Z:\Ted\projs\ROM_Emulator\ROM_Emulator\PCB_Files\ROM_Emulator-NPTH-drl_map.ps
%%Pages: 1
%%PageOrder: Ascend
%%BoundingBox: 0 0 596 842
%%DocumentMedia: A4 595 842 0 () ()
%%Orientation: Landscape
%%EndComments
%%BeginProlog
/line { newpath moveto lineto stroke } bind def
/cir0 { newpath 0 360 arc stroke } bind def
/cir1 { newpath 0 360 arc gsave fill grestore stroke } bind def
/cir2 { newpath 0 360 arc gsave fill grestore stroke } bind def
/arc0 { newpath arc stroke } bind def
/arc1 { newpath 4 index 4 index moveto arc closepath gsave fill
grestore stroke } bind def
/arc2 { newpath 4 index 4 index moveto arc closepath gsave fill
grestore stroke } bind def
/poly0 { stroke } bind def
/poly1 { closepath gsave fill grestore stroke } bind def
/poly2 { closepath gsave fill grestore stroke } bind def
/rect0 { rectstroke } bind def
/rect1 { rectfill } bind def
/rect2 { rectfill } bind def
/linemode0 { 0 setlinecap 0 setlinejoin 0 setlinewidth } bind def
/linemode1 { 1 setlinecap 1 setlinejoin } bind def
/dashedline { [200] 100 setdash } bind def
/solidline { [] 0 setdash } bind def
/phantomshow { moveto
/KicadFont findfont 0.000001 scalefont setfont
show } bind def
/textshow { gsave
findfont exch scalefont setfont concat 1 scale 0 0 moveto show
} bind def
/reencodefont {
findfont dup length dict begin
{ 1 index /FID ne
{ def }
{ pop pop } ifelse
} forall
/Encoding ISOLatin1Encoding def
currentdict
end } bind def
/KicadFont /Helvetica reencodefont definefont pop
/KicadFont-Bold /Helvetica-Bold reencodefont definefont pop
/KicadFont-Oblique /Helvetica-Oblique reencodefont definefont pop
/KicadFont-BoldOblique /Helvetica-BoldOblique reencodefont definefont pop
%%EndProlog
%%Page: 1 1
%%BeginPageSetup
gsave
0.0072 0.0072 scale
linemode1
82680 0 translate 90 rotate
133.899 setlinewidth
%%EndPageSetup
0 0 0 setrgbcolor
52.7163 setlinewidth
newpath
48428.5 39644.8 moveto
48428.5 78716.6 lineto
stroke
0 0 0 setrgbcolor
newpath
71111 39644.8 moveto
48428.5 39644.8 lineto
stroke
0 0 0 setrgbcolor
newpath
71111 78716.6 moveto
71111 39644.8 lineto
stroke
0 0 0 setrgbcolor
newpath
48428.5 78716.6 moveto
71111 78716.6 lineto
stroke
78.7391 setlinewidth
118.11 setlinewidth
0 0 0 setrgbcolor
0 0 0 setrgbcolor
newpath
46920.3 35175.5 moveto
46920.3 36356.6 lineto
47201.5 36356.6 lineto
47370.3 36300.3 lineto
47482.7 36187.9 lineto
47539 36075.4 lineto
47595.2 35850.4 lineto
47595.2 35681.7 lineto
47539 35456.7 lineto
47482.7 35344.2 lineto
47370.3 35231.7 lineto
47201.5 35175.5 lineto
46920.3 35175.5 lineto
stroke
newpath
48101.4 35175.5 moveto
48101.4 35962.9 lineto
stroke
newpath
48101.4 35737.9 moveto
48157.7 35850.4 lineto
48213.9 35906.6 lineto
48326.4 35962.9 lineto
48438.9 35962.9 lineto
stroke
newpath
48832.6 35175.5 moveto
48832.6 35962.9 lineto
stroke
newpath
48832.6 36356.6 moveto
48776.3 36300.3 lineto
48832.6 36244.1 lineto
48888.8 36300.3 lineto
48832.6 36356.6 lineto
48832.6 36244.1 lineto
stroke
newpath
49563.7 35175.5 moveto
49451.2 35231.7 lineto
49395 35344.2 lineto
49395 36356.6 lineto
stroke
newpath
50182.4 35175.5 moveto
50069.9 35231.7 lineto
50013.7 35344.2 lineto
50013.7 36356.6 lineto
stroke
newpath
51532.2 35175.5 moveto
51532.2 36356.6 lineto
51925.9 35512.9 lineto
52319.6 36356.6 lineto
52319.6 35175.5 lineto
stroke
newpath
53388.3 35175.5 moveto
53388.3 35794.2 lineto
53332 35906.6 lineto
53219.5 35962.9 lineto
52994.6 35962.9 lineto
52882.1 35906.6 lineto
stroke
newpath
53388.3 35231.7 moveto
53275.8 35175.5 lineto
52994.6 35175.5 lineto
52882.1 35231.7 lineto
52825.8 35344.2 lineto
52825.8 35456.7 lineto
52882.1 35569.2 lineto
52994.6 35625.4 lineto
53275.8 35625.4 lineto
53388.3 35681.7 lineto
stroke
newpath
53950.7 35962.9 moveto
53950.7 34781.8 lineto
stroke
newpath
53950.7 35906.6 moveto
54063.2 35962.9 lineto
54288.1 35962.9 lineto
54400.6 35906.6 lineto
54456.9 35850.4 lineto
54513.1 35737.9 lineto
54513.1 35400.5 lineto
54456.9 35288 lineto
54400.6 35231.7 lineto
54288.1 35175.5 lineto
54063.2 35175.5 lineto
53950.7 35231.7 lineto
stroke
newpath
55019.3 35288 moveto
55075.5 35231.7 lineto
55019.3 35175.5 lineto
54963.1 35231.7 lineto
55019.3 35288 lineto
55019.3 35175.5 lineto
stroke
newpath
55019.3 35906.6 moveto
55075.5 35850.4 lineto
55019.3 35794.2 lineto
54963.1 35850.4 lineto
55019.3 35906.6 lineto
55019.3 35794.2 lineto
stroke
showpage
grestore
%%EOF

View File

@ -0,0 +1,13 @@
M48
; DRILL file {KiCad (5.1.8)-1} date 02/05/21 23:49:56
; FORMAT={2:4/ absolute / inch / suppress leading zeros}
; #@! TF.CreationDate,2021-02-05T23:49:56-08:00
; #@! TF.GenerationSoftware,Kicad,Pcbnew,(5.1.8)-1
; #@! TF.FileFunction,NonPlated,1,2,NPTH
FMAT,2
INCH,TZ
%
G90
G05
T0
M30

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,106 @@
M48
; DRILL file {KiCad (5.1.8)-1} date 02/05/21 23:49:56
; FORMAT={2:4/ absolute / inch / suppress leading zeros}
; #@! TF.CreationDate,2021-02-05T23:49:56-08:00
; #@! TF.GenerationSoftware,Kicad,Pcbnew,(5.1.8)-1
; #@! TF.FileFunction,Plated,1,2,PTH
FMAT,2
INCH,TZ
T1C0.0157
T2C0.0315
T3C0.0433
%
G90
G05
T1
X66800Y-40910
X66930Y-42430
X66950Y-36000
X66980Y-45500
X67400Y-40960
X67620Y-34510
X67670Y-33300
X67680Y-38220
X67850Y-42050
X67920Y-46020
X67960Y-39470
X68050Y-40980
X68270Y-34050
X68310Y-44010
X68340Y-45500
X68420Y-35000
X68470Y-39070
X68470Y-40000
X68540Y-43280
X68630Y-40630
X68630Y-42560
X68640Y-45050
X68640Y-44460
X68793Y-35459
X68970Y-33350
X69070Y-41980
X69100Y-38200
X69650Y-36220
X69810Y-32790
X69890Y-42330
X70080Y-37780
T2
X65760Y-33050
X65760Y-34050
X65760Y-35050
X65760Y-36050
X65760Y-37050
X65760Y-38050
X65760Y-39050
X65760Y-40050
X65760Y-41050
X65760Y-42050
X65760Y-43050
X65760Y-44050
X65760Y-45050
X65760Y-46050
X71760Y-33050
X71760Y-34050
X71760Y-35050
X71760Y-36050
X71760Y-37050
X71760Y-38050
X71760Y-39050
X71760Y-40050
X71760Y-41050
X71760Y-42050
X71760Y-43050
X71760Y-44050
X71760Y-45050
X71760Y-46050
T3
X64790Y-33050
X64790Y-34050
X64790Y-35050
X64790Y-36050
X64790Y-37050
X64790Y-38050
X64790Y-39050
X64790Y-40050
X64790Y-41050
X64790Y-42050
X64790Y-43050
X64790Y-44050
X64790Y-45050
X64790Y-46050
X70790Y-33050
X70790Y-34050
X70790Y-35050
X70790Y-36050
X70790Y-37050
X70790Y-38050
X70790Y-39050
X70790Y-40050
X70790Y-41050
X70790Y-42050
X70790Y-43050
X70790Y-44050
X70790Y-45050
X70790Y-46050
T0
M30

View File

@ -0,0 +1 @@
Ref,Val,Package,PosX,PosY,Rot,Side
1 Ref Val Package PosX PosY Rot Side

View File

@ -0,0 +1,6 @@
### Module positions - created on 02/05/21 23:50:10 ###
### Printed by Pcbnew version kicad (5.1.8)-1
## Unit = mm, Angle = deg.
## Side : bottom
# Ref Val Package PosX PosY Rot Side
## End

View File

@ -0,0 +1,4 @@
Ref,Val,Package,PosX,PosY,Rot,Side
"U2","74LS245","SSOP-20_5.3x7.2mm_P0.65mm",10.972800,7.035800,0.000000,top
"U4","74LS245","SSOP-20_5.3x7.2mm_P0.65mm",11.023600,18.669000,0.000000,top
"U5","74LS245","SSOP-20_5.3x7.2mm_P0.65mm",10.896600,31.267400,0.000000,top
1 Ref Val Package PosX PosY Rot Side
2 U2 74LS245 SSOP-20_5.3x7.2mm_P0.65mm 10.972800 7.035800 0.000000 top
3 U4 74LS245 SSOP-20_5.3x7.2mm_P0.65mm 11.023600 18.669000 0.000000 top
4 U5 74LS245 SSOP-20_5.3x7.2mm_P0.65mm 10.896600 31.267400 0.000000 top

View File

@ -0,0 +1,9 @@
### Module positions - created on 02/05/21 23:50:10 ###
### Printed by Pcbnew version kicad (5.1.8)-1
## Unit = mm, Angle = deg.
## Side : top
# Ref Val Package PosX PosY Rot Side
U2 74LS245 SSOP-20_5.3x7.2mm_P0.65mm 10.9728 7.0358 0.0000 top
U4 74LS245 SSOP-20_5.3x7.2mm_P0.65mm 11.0236 18.6690 0.0000 top
U5 74LS245 SSOP-20_5.3x7.2mm_P0.65mm 10.8966 31.2674 0.0000 top
## End

View File

@ -0,0 +1,151 @@
P CODE 00
P UNITS CUST 0
P arrayDim N
317GND VIA MD0157PA00X+003650Y+013390X0315Y0000R000S3
317GND VIA MD0157PA00X+002930Y+010690X0315Y0000R000S3
317GND VIA MD0157PA00X+003660Y+008470X0315Y0000R000S3
317GND VIA MD0157PA00X+002910Y+004260X0315Y0000R000S3
317GND VIA MD0157PA00X+002960Y+001190X0315Y0000R000S3
317GND VIA MD0157PA00X+004950Y+013340X0315Y0000R000S3
317GND VIA MD0157PA00X+005080Y+008490X0315Y0000R000S3
317GND VIA MD0157PA00X+002780Y+005780X0315Y0000R000S3
317V5_A0 VIA MD0157PA00X+003830Y+004640X0315Y0000R000S3
317V5_A1 VIA MD0157PA00X+003380Y+005730X0315Y0000R000S3
317OE_N VIA MD0157PA00X+005050Y+004710X0315Y0000R000S3
317V5_A2 VIA MD0157PA00X+004450Y+006690X0315Y0000R000S3
317V5_A3 VIA MD0157PA00X+004450Y+007620X0315Y0000R000S3
317V5_D6 VIA MD0157PA00X+004610Y+004130X0315Y0000R000S3
317V5_A6 VIA MD0157PA00X+004710Y+011060X0315Y0000R000S3
317V5_D5 VIA MD0157PA00X+004620Y+001640X0315Y0000R000S3
317V5_A7 VIA MD0157PA00X+004400Y+011690X0315Y0000R000S3
317V5_D4 VIA MD0157PA00X+004320Y+001190X0315Y0000R000S3
317V5_A12 VIA MD0157PA00X+004250Y+012640X0315Y0000R000S3
317V5_D3 VIA MD0157PA00X+003900Y+000670X0315Y0000R000S3
317+3V3 VIA MD0157PA00X+005790Y+013900X0315Y0000R000S3
317+3V3 VIA MD0157PA00X+005870Y+004360X0315Y0000R000S3
317+3V3 VIA MD0157PA00X+006060Y+008910X0315Y0000R000S3
317V3_D0 VIA MD0157PA00X+004520Y+003410X0315Y0000R000S3
317V3_D1 VIA MD0157PA00X+004290Y+002680X0315Y0000R000S3
317V3_D2 VIA MD0157PA00X+004620Y+002230X0315Y0000R000S3
317V3_A7 VIA MD0157PA00X+003600Y+012180X0315Y0000R000S3
317V3_A2 VIA MD0157PA00X+003940Y+007220X0315Y0000R000S3
317V3_A1 VIA MD0157PA00X+004610Y+006060X0315Y0000R000S3
317V3_A0 VIA MD0157PA00X+004030Y+005710X0315Y0000R000S3
317V3_A8 VIA MD0157PA00X+005630Y+010470X0315Y0000R000S3
317V3_D3 U3 -20 D0433PA00X+006770Y+000640X0630Y0000R090S0
317V3_D2 U3 -14 D0433PA00X+000770Y+000640X0630Y0000R090S0
317V3_D4 U3 -21 D0433PA00X+006770Y+001640X0630Y0000R090S0
317V3_D5 U3 -22 D0433PA00X+006770Y+002640X0630Y0000R090S0
317V3_D6 U3 -23 D0433PA00X+006770Y+003640X0630Y0000R090S0
317V3_D7 U3 -24 D0433PA00X+006770Y+004640X0630Y0000R090S0
317V3_A0 U3 -25 D0433PA00X+006770Y+005640X0630Y0000R090S0
317V3_A1 U3 -26 D0433PA00X+006770Y+006640X0630Y0000R090S0
317V3_A2 U3 -27 D0433PA00X+006770Y+007640X0630Y0000R090S0
317V3_A9 U3 -28 D0433PA00X+006770Y+008640X0630Y0000R090S0
317V3_A6 U3 -29 D0433PA00X+006770Y+009640X0630Y0000R090S0
317V3_A8 U3 -30 D0433PA00X+006770Y+010640X0630Y0000R090S0
317+3V3 U3 -31 D0433PA00X+006770Y+011640X0630Y0000R090S0
317GND U3 -32 D0433PA00X+006770Y+012640X0630Y0000R090S0
317NET-(U3-PAD33) U3 -33 D0433PA00X+006770Y+013640X0630Y0000R090S0
317V3_D1 U3 -13 D0433PA00X+000770Y+001640X0630Y0000R090S0
317V3_D0 U3 -12 D0433PA00X+000770Y+002640X0630Y0000R090S0
317V3_A3 U3 -11 D0433PA00X+000770Y+003640X0630Y0000R090S0
317V3_A10 U3 -10 D0433PA00X+000770Y+004640X0630Y0000R090S0
317V3_A4 U3 -9 D0433PA00X+000770Y+005640X0630Y0000R090S0
317V3_A11 U3 -8 D0433PA00X+000770Y+006640X0630Y0000R090S0
317V3_A5 U3 -7 D0433PA00X+000770Y+007640X0630Y0000R090S0
317V3_A7 U3 -6 D0433PA00X+000770Y+008640X0630Y0000R090S0
317V3_A13 U3 -5 D0433PA00X+000770Y+009640X0630Y0000R090S0
317V3_A12 U3 -4 D0433PA00X+000770Y+010640X0630Y0000R090S0
317V3_A14 U3 -3 D0433PA00X+000770Y+011640X0630Y0000R090S0
317V3_A15 U3 -2 D0433PA00X+000770Y+012640X0630Y0000R090S0
317GND U3 -1 D0433PA00X+000770Y+013640X0630Y0000R090S0
327GND U5 -1 A01X+002912Y+013462X0748Y0197R000S2
327V3_A15 U5 -2 A01X+002912Y+013206X0748Y0197R000S2
327V3_A14 U5 -3 A01X+002912Y+012950X0748Y0197R000S2
327V3_A12 U5 -4 A01X+002912Y+012694X0748Y0197R000S2
327V3_A13 U5 -5 A01X+002912Y+012438X0748Y0197R000S2
327V3_A7 U5 -6 A01X+002912Y+012182X0748Y0197R000S2
327V3_A8 U5 -7 A01X+002912Y+011926X0748Y0197R000S2
327V3_A6 U5 -8 A01X+002912Y+011670X0748Y0197R000S2
327V3_A9 U5 -9 A01X+002912Y+011414X0748Y0197R000S2
327GND U5 -10 A01X+002912Y+011158X0748Y0197R000S2
327V5_A9 U5 -11 A01X+005668Y+011158X0748Y0197R000S2
327V5_A6 U5 -12 A01X+005668Y+011414X0748Y0197R000S2
327V5_A8 U5 -13 A01X+005668Y+011670X0748Y0197R000S2
327V5_A7 U5 -14 A01X+005668Y+011926X0748Y0197R000S2
327V5_A13 U5 -15 A01X+005668Y+012182X0748Y0197R000S2
327V5_A12 U5 -16 A01X+005668Y+012438X0748Y0197R000S2
327V5_A14 U5 -17 A01X+005668Y+012694X0748Y0197R000S2
327V5_A15 U5 -18 A01X+005668Y+012950X0748Y0197R000S2
327GND U5 -19 A01X+005668Y+013206X0748Y0197R000S2
327+3V3 U5 -20 A01X+005668Y+013462X0748Y0197R000S2
327+3V3 U4 -20 A01X+005718Y+008502X0748Y0197R000S2
327GND U4 -19 A01X+005718Y+008246X0748Y0197R000S2
327V5_A5 U4 -18 A01X+005718Y+007990X0748Y0197R000S2
327V5_A11 U4 -17 A01X+005718Y+007734X0748Y0197R000S2
327V5_A4 U4 -16 A01X+005718Y+007478X0748Y0197R000S2
327V5_A10 U4 -15 A01X+005718Y+007222X0748Y0197R000S2
327V5_A3 U4 -14 A01X+005718Y+006966X0748Y0197R000S2
327V5_A2 U4 -13 A01X+005718Y+006710X0748Y0197R000S2
327V5_A1 U4 -12 A01X+005718Y+006454X0748Y0197R000S2
327V5_A0 U4 -11 A01X+005718Y+006198X0748Y0197R000S2
327GND U4 -10 A01X+002962Y+006198X0748Y0197R000S2
327V3_A0 U4 -9 A01X+002962Y+006454X0748Y0197R000S2
327V3_A1 U4 -8 A01X+002962Y+006710X0748Y0197R000S2
327V3_A2 U4 -7 A01X+002962Y+006966X0748Y0197R000S2
327V3_A3 U4 -6 A01X+002962Y+007222X0748Y0197R000S2
327V3_A10 U4 -5 A01X+002962Y+007478X0748Y0197R000S2
327V3_A4 U4 -4 A01X+002962Y+007734X0748Y0197R000S2
327V3_A11 U4 -3 A01X+002962Y+007990X0748Y0197R000S2
327V3_A5 U4 -2 A01X+002962Y+008246X0748Y0197R000S2
327GND U4 -1 A01X+002962Y+008502X0748Y0197R000S2
327+3V3 U2 -20 A01X+005698Y+003922X0748Y0197R000S2
327OE_N U2 -19 A01X+005698Y+003666X0748Y0197R000S2
327V3_D0 U2 -18 A01X+005698Y+003410X0748Y0197R000S2
327V3_D1 U2 -17 A01X+005698Y+003154X0748Y0197R000S2
327V3_D2 U2 -16 A01X+005698Y+002898X0748Y0197R000S2
327V3_D7 U2 -15 A01X+005698Y+002642X0748Y0197R000S2
327V3_D6 U2 -14 A01X+005698Y+002386X0748Y0197R000S2
327V3_D5 U2 -13 A01X+005698Y+002130X0748Y0197R000S2
327V3_D4 U2 -12 A01X+005698Y+001874X0748Y0197R000S2
327V3_D3 U2 -11 A01X+005698Y+001618X0748Y0197R000S2
327GND U2 -10 A01X+002942Y+001618X0748Y0197R000S2
327V5_D3 U2 -9 A01X+002942Y+001874X0748Y0197R000S2
327V5_D4 U2 -8 A01X+002942Y+002130X0748Y0197R000S2
327V5_D5 U2 -7 A01X+002942Y+002386X0748Y0197R000S2
327V5_D6 U2 -6 A01X+002942Y+002642X0748Y0197R000S2
327V5_D7 U2 -5 A01X+002942Y+002898X0748Y0197R000S2
327V5_D2 U2 -4 A01X+002942Y+003154X0748Y0197R000S2
327V5_D1 U2 -3 A01X+002942Y+003410X0748Y0197R000S2
327V5_D0 U2 -2 A01X+002942Y+003666X0748Y0197R000S2
327GND U2 -1 A01X+002942Y+003922X0748Y0197R000S2
317NET-(U1-PAD28) U1 -28 D0315PA00X+007740Y+013640X0630Y0630R000S0
317GND U1 -14 D0315PA00X+001740Y+000640X0630Y0630R000S0
317V5_A14 U1 -27 D0315PA00X+007740Y+012640X0630Y0630R000S0
317V5_D2 U1 -13 D0315PA00X+001740Y+001640X0630Y0630R000S0
317V5_A13 U1 -26 D0315PA00X+007740Y+011640X0630Y0630R000S0
317V5_D1 U1 -12 D0315PA00X+001740Y+002640X0630Y0630R000S0
317V5_A8 U1 -25 D0315PA00X+007740Y+010640X0630Y0630R000S0
317V5_D0 U1 -11 D0315PA00X+001740Y+003640X0630Y0630R000S0
317V5_A9 U1 -24 D0315PA00X+007740Y+009640X0630Y0630R000S0
317V5_A0 U1 -10 D0315PA00X+001740Y+004640X0630Y0630R000S0
317V5_A11 U1 -23 D0315PA00X+007740Y+008640X0630Y0630R000S0
317V5_A1 U1 -9 D0315PA00X+001740Y+005640X0630Y0630R000S0
317OE_N U1 -22 D0315PA00X+007740Y+007640X0630Y0630R000S0
317V5_A2 U1 -8 D0315PA00X+001740Y+006640X0630Y0630R000S0
317V5_A10 U1 -21 D0315PA00X+007740Y+006640X0630Y0630R000S0
317V5_A3 U1 -7 D0315PA00X+001740Y+007640X0630Y0630R000S0
317NET-(U1-PAD20) U1 -20 D0315PA00X+007740Y+005640X0630Y0630R000S0
317V5_A4 U1 -6 D0315PA00X+001740Y+008640X0630Y0630R000S0
317V5_D7 U1 -19 D0315PA00X+007740Y+004640X0630Y0630R000S0
317V5_A5 U1 -5 D0315PA00X+001740Y+009640X0630Y0630R000S0
317V5_D6 U1 -18 D0315PA00X+007740Y+003640X0630Y0630R000S0
317V5_A6 U1 -4 D0315PA00X+001740Y+010640X0630Y0630R000S0
317V5_D5 U1 -17 D0315PA00X+007740Y+002640X0630Y0630R000S0
317V5_A7 U1 -3 D0315PA00X+001740Y+011640X0630Y0630R000S0
317V5_D4 U1 -16 D0315PA00X+007740Y+001640X0630Y0630R000S0
317V5_A12 U1 -2 D0315PA00X+001740Y+012640X0630Y0630R000S0
317V5_D3 U1 -15 D0315PA00X+007740Y+000640X0630Y0630R000S0
317V5_A15 U1 -1 D0315PA00X+001740Y+013640X0630Y0630R000S0
999

View File

@ -0,0 +1,753 @@
## Footprint report - date 02/05/21 22:33:00
## Created by Pcbnew version kicad (5.1.8)-1
## Unit = inches, Angle = deg.
$BeginDESCRIPTION
$BOARD
upper_left_corner 6.303575 3.209016
lower_right_corner 7.249984 5.418870
$EndBOARD
$MODULE "U3"
reference "U3"
value "Teensy4.0"
footprint "Teensy:Teensy40"
attribut none
position 6.779000 3.955000 orientation 270.00
layer front
$PAD "20"
Shape Circle Layer both
position 0.650000 -0.300000 size 0.062992 0.062992 orientation 0.00
drill 0.043307
shape_offset 0.000000 0.000000
$EndPAD
$PAD "14"
Shape Circle Layer both
position 0.650000 0.300000 size 0.062992 0.062992 orientation 0.00
drill 0.043307
shape_offset 0.000000 0.000000
$EndPAD
$PAD "21"
Shape Circle Layer both
position 0.550000 -0.300000 size 0.062992 0.062992 orientation 0.00
drill 0.043307
shape_offset 0.000000 0.000000
$EndPAD
$PAD "22"
Shape Circle Layer both
position 0.450000 -0.300000 size 0.062992 0.062992 orientation 0.00
drill 0.043307
shape_offset 0.000000 0.000000
$EndPAD
$PAD "23"
Shape Circle Layer both
position 0.350000 -0.300000 size 0.062992 0.062992 orientation 0.00
drill 0.043307
shape_offset 0.000000 0.000000
$EndPAD
$PAD "24"
Shape Circle Layer both
position 0.250000 -0.300000 size 0.062992 0.062992 orientation 0.00
drill 0.043307
shape_offset 0.000000 0.000000
$EndPAD
$PAD "25"
Shape Circle Layer both
position 0.150000 -0.300000 size 0.062992 0.062992 orientation 0.00
drill 0.043307
shape_offset 0.000000 0.000000
$EndPAD
$PAD "26"
Shape Circle Layer both
position 0.050000 -0.300000 size 0.062992 0.062992 orientation 0.00
drill 0.043307
shape_offset 0.000000 0.000000
$EndPAD
$PAD "27"
Shape Circle Layer both
position -0.050000 -0.300000 size 0.062992 0.062992 orientation 0.00
drill 0.043307
shape_offset 0.000000 0.000000
$EndPAD
$PAD "28"
Shape Circle Layer both
position -0.150000 -0.300000 size 0.062992 0.062992 orientation 0.00
drill 0.043307
shape_offset 0.000000 0.000000
$EndPAD
$PAD "29"
Shape Circle Layer both
position -0.250000 -0.300000 size 0.062992 0.062992 orientation 0.00
drill 0.043307
shape_offset 0.000000 0.000000
$EndPAD
$PAD "30"
Shape Circle Layer both
position -0.350000 -0.300000 size 0.062992 0.062992 orientation 0.00
drill 0.043307
shape_offset 0.000000 0.000000
$EndPAD
$PAD "31"
Shape Circle Layer both
position -0.450000 -0.300000 size 0.062992 0.062992 orientation 0.00
drill 0.043307
shape_offset 0.000000 0.000000
$EndPAD
$PAD "32"
Shape Circle Layer both
position -0.550000 -0.300000 size 0.062992 0.062992 orientation 0.00
drill 0.043307
shape_offset 0.000000 0.000000
$EndPAD
$PAD "33"
Shape Circle Layer both
position -0.650000 -0.300000 size 0.062992 0.062992 orientation 0.00
drill 0.043307
shape_offset 0.000000 0.000000
$EndPAD
$PAD "13"
Shape Circle Layer both
position 0.550000 0.300000 size 0.062992 0.062992 orientation 0.00
drill 0.043307
shape_offset 0.000000 0.000000
$EndPAD
$PAD "12"
Shape Circle Layer both
position 0.450000 0.300000 size 0.062992 0.062992 orientation 0.00
drill 0.043307
shape_offset 0.000000 0.000000
$EndPAD
$PAD "11"
Shape Circle Layer both
position 0.350000 0.300000 size 0.062992 0.062992 orientation 0.00
drill 0.043307
shape_offset 0.000000 0.000000
$EndPAD
$PAD "10"
Shape Circle Layer both
position 0.250000 0.300000 size 0.062992 0.062992 orientation 0.00
drill 0.043307
shape_offset 0.000000 0.000000
$EndPAD
$PAD "9"
Shape Circle Layer both
position 0.150000 0.300000 size 0.062992 0.062992 orientation 0.00
drill 0.043307
shape_offset 0.000000 0.000000
$EndPAD
$PAD "8"
Shape Circle Layer both
position 0.050000 0.300000 size 0.062992 0.062992 orientation 0.00
drill 0.043307
shape_offset 0.000000 0.000000
$EndPAD
$PAD "7"
Shape Circle Layer both
position -0.050000 0.300000 size 0.062992 0.062992 orientation 0.00
drill 0.043307
shape_offset 0.000000 0.000000
$EndPAD
$PAD "6"
Shape Circle Layer both
position -0.150000 0.300000 size 0.062992 0.062992 orientation 0.00
drill 0.043307
shape_offset 0.000000 0.000000
$EndPAD
$PAD "5"
Shape Circle Layer both
position -0.250000 0.300000 size 0.062992 0.062992 orientation 0.00
drill 0.043307
shape_offset 0.000000 0.000000
$EndPAD
$PAD "4"
Shape Circle Layer both
position -0.350000 0.300000 size 0.062992 0.062992 orientation 0.00
drill 0.043307
shape_offset 0.000000 0.000000
$EndPAD
$PAD "3"
Shape Circle Layer both
position -0.450000 0.300000 size 0.062992 0.062992 orientation 0.00
drill 0.043307
shape_offset 0.000000 0.000000
$EndPAD
$PAD "2"
Shape Circle Layer both
position -0.550000 0.300000 size 0.062992 0.062992 orientation 0.00
drill 0.043307
shape_offset 0.000000 0.000000
$EndPAD
$PAD "1"
Shape Circle Layer both
position -0.650000 0.300000 size 0.062992 0.062992 orientation 0.00
drill 0.043307
shape_offset 0.000000 0.000000
$EndPAD
$EndMODULE U3
$MODULE "U5"
reference "U5"
value "74LS245"
footprint "Package_SO:SSOP-20_5.3x7.2mm_P0.65mm"
attribut smd
position 6.831000 3.438000 orientation 0.00
layer front
$PAD "1"
Shape Roundrect Layer front
position -0.137795 -0.115157 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "2"
Shape Roundrect Layer front
position -0.137795 -0.089567 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "3"
Shape Roundrect Layer front
position -0.137795 -0.063976 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "4"
Shape Roundrect Layer front
position -0.137795 -0.038386 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "5"
Shape Roundrect Layer front
position -0.137795 -0.012795 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "6"
Shape Roundrect Layer front
position -0.137795 0.012795 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "7"
Shape Roundrect Layer front
position -0.137795 0.038386 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "8"
Shape Roundrect Layer front
position -0.137795 0.063976 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "9"
Shape Roundrect Layer front
position -0.137795 0.089567 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "10"
Shape Roundrect Layer front
position -0.137795 0.115157 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "11"
Shape Roundrect Layer front
position 0.137795 0.115157 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "12"
Shape Roundrect Layer front
position 0.137795 0.089567 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "13"
Shape Roundrect Layer front
position 0.137795 0.063976 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "14"
Shape Roundrect Layer front
position 0.137795 0.038386 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "15"
Shape Roundrect Layer front
position 0.137795 0.012795 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "16"
Shape Roundrect Layer front
position 0.137795 -0.012795 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "17"
Shape Roundrect Layer front
position 0.137795 -0.038386 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "18"
Shape Roundrect Layer front
position 0.137795 -0.063976 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "19"
Shape Roundrect Layer front
position 0.137795 -0.089567 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "20"
Shape Roundrect Layer front
position 0.137795 -0.115157 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$EndMODULE U5
$MODULE "U4"
reference "U4"
value "74LS245"
footprint "Package_SO:SSOP-20_5.3x7.2mm_P0.65mm"
attribut smd
position 6.836000 3.934000 orientation 0.00
layer front
$PAD "20"
Shape Roundrect Layer front
position 0.137795 -0.115157 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "19"
Shape Roundrect Layer front
position 0.137795 -0.089567 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "18"
Shape Roundrect Layer front
position 0.137795 -0.063976 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "17"
Shape Roundrect Layer front
position 0.137795 -0.038386 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "16"
Shape Roundrect Layer front
position 0.137795 -0.012795 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "15"
Shape Roundrect Layer front
position 0.137795 0.012795 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "14"
Shape Roundrect Layer front
position 0.137795 0.038386 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "13"
Shape Roundrect Layer front
position 0.137795 0.063976 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "12"
Shape Roundrect Layer front
position 0.137795 0.089567 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "11"
Shape Roundrect Layer front
position 0.137795 0.115157 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "10"
Shape Roundrect Layer front
position -0.137795 0.115157 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "9"
Shape Roundrect Layer front
position -0.137795 0.089567 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "8"
Shape Roundrect Layer front
position -0.137795 0.063976 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "7"
Shape Roundrect Layer front
position -0.137795 0.038386 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "6"
Shape Roundrect Layer front
position -0.137795 0.012795 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "5"
Shape Roundrect Layer front
position -0.137795 -0.012795 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "4"
Shape Roundrect Layer front
position -0.137795 -0.038386 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "3"
Shape Roundrect Layer front
position -0.137795 -0.063976 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "2"
Shape Roundrect Layer front
position -0.137795 -0.089567 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "1"
Shape Roundrect Layer front
position -0.137795 -0.115157 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$EndMODULE U4
$MODULE "U2"
reference "U2"
value "74LS245"
footprint "Package_SO:SSOP-20_5.3x7.2mm_P0.65mm"
attribut smd
position 6.834000 4.392000 orientation 0.00
layer front
$PAD "20"
Shape Roundrect Layer front
position 0.137795 -0.115157 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "19"
Shape Roundrect Layer front
position 0.137795 -0.089567 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "18"
Shape Roundrect Layer front
position 0.137795 -0.063976 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "17"
Shape Roundrect Layer front
position 0.137795 -0.038386 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "16"
Shape Roundrect Layer front
position 0.137795 -0.012795 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "15"
Shape Roundrect Layer front
position 0.137795 0.012795 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "14"
Shape Roundrect Layer front
position 0.137795 0.038386 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "13"
Shape Roundrect Layer front
position 0.137795 0.063976 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "12"
Shape Roundrect Layer front
position 0.137795 0.089567 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "11"
Shape Roundrect Layer front
position 0.137795 0.115157 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "10"
Shape Roundrect Layer front
position -0.137795 0.115157 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "9"
Shape Roundrect Layer front
position -0.137795 0.089567 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "8"
Shape Roundrect Layer front
position -0.137795 0.063976 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "7"
Shape Roundrect Layer front
position -0.137795 0.038386 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "6"
Shape Roundrect Layer front
position -0.137795 0.012795 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "5"
Shape Roundrect Layer front
position -0.137795 -0.012795 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "4"
Shape Roundrect Layer front
position -0.137795 -0.038386 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "3"
Shape Roundrect Layer front
position -0.137795 -0.063976 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "2"
Shape Roundrect Layer front
position -0.137795 -0.089567 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$PAD "1"
Shape Roundrect Layer front
position -0.137795 -0.115157 size 0.074803 0.019685 orientation 0.00
drill 0.000000
shape_offset 0.000000 0.000000
$EndPAD
$EndMODULE U2
$MODULE "U1"
reference "U1"
value "27C512"
footprint "Package_DIP:DIP-28_W15.24mm"
attribut none
position 6.576000 3.305000 orientation 0.00
layer front
$PAD "28"
Shape Oval Layer both
position 0.600000 0.000000 size 0.062992 0.062992 orientation 0.00
drill 0.031496
shape_offset 0.000000 0.000000
$EndPAD
$PAD "14"
Shape Oval Layer both
position 0.000000 1.300000 size 0.062992 0.062992 orientation 0.00
drill 0.031496
shape_offset 0.000000 0.000000
$EndPAD
$PAD "27"
Shape Oval Layer both
position 0.600000 0.100000 size 0.062992 0.062992 orientation 0.00
drill 0.031496
shape_offset 0.000000 0.000000
$EndPAD
$PAD "13"
Shape Oval Layer both
position 0.000000 1.200000 size 0.062992 0.062992 orientation 0.00
drill 0.031496
shape_offset 0.000000 0.000000
$EndPAD
$PAD "26"
Shape Oval Layer both
position 0.600000 0.200000 size 0.062992 0.062992 orientation 0.00
drill 0.031496
shape_offset 0.000000 0.000000
$EndPAD
$PAD "12"
Shape Oval Layer both
position 0.000000 1.100000 size 0.062992 0.062992 orientation 0.00
drill 0.031496
shape_offset 0.000000 0.000000
$EndPAD
$PAD "25"
Shape Oval Layer both
position 0.600000 0.300000 size 0.062992 0.062992 orientation 0.00
drill 0.031496
shape_offset 0.000000 0.000000
$EndPAD
$PAD "11"
Shape Oval Layer both
position 0.000000 1.000000 size 0.062992 0.062992 orientation 0.00
drill 0.031496
shape_offset 0.000000 0.000000
$EndPAD
$PAD "24"
Shape Oval Layer both
position 0.600000 0.400000 size 0.062992 0.062992 orientation 0.00
drill 0.031496
shape_offset 0.000000 0.000000
$EndPAD
$PAD "10"
Shape Oval Layer both
position 0.000000 0.900000 size 0.062992 0.062992 orientation 0.00
drill 0.031496
shape_offset 0.000000 0.000000
$EndPAD
$PAD "23"
Shape Oval Layer both
position 0.600000 0.500000 size 0.062992 0.062992 orientation 0.00
drill 0.031496
shape_offset 0.000000 0.000000
$EndPAD
$PAD "9"
Shape Oval Layer both
position 0.000000 0.800000 size 0.062992 0.062992 orientation 0.00
drill 0.031496
shape_offset 0.000000 0.000000
$EndPAD
$PAD "22"
Shape Oval Layer both
position 0.600000 0.600000 size 0.062992 0.062992 orientation 0.00
drill 0.031496
shape_offset 0.000000 0.000000
$EndPAD
$PAD "8"
Shape Oval Layer both
position 0.000000 0.700000 size 0.062992 0.062992 orientation 0.00
drill 0.031496
shape_offset 0.000000 0.000000
$EndPAD
$PAD "21"
Shape Oval Layer both
position 0.600000 0.700000 size 0.062992 0.062992 orientation 0.00
drill 0.031496
shape_offset 0.000000 0.000000
$EndPAD
$PAD "7"
Shape Oval Layer both
position 0.000000 0.600000 size 0.062992 0.062992 orientation 0.00
drill 0.031496
shape_offset 0.000000 0.000000
$EndPAD
$PAD "20"
Shape Oval Layer both
position 0.600000 0.800000 size 0.062992 0.062992 orientation 0.00
drill 0.031496
shape_offset 0.000000 0.000000
$EndPAD
$PAD "6"
Shape Oval Layer both
position 0.000000 0.500000 size 0.062992 0.062992 orientation 0.00
drill 0.031496
shape_offset 0.000000 0.000000
$EndPAD
$PAD "19"
Shape Oval Layer both
position 0.600000 0.900000 size 0.062992 0.062992 orientation 0.00
drill 0.031496
shape_offset 0.000000 0.000000
$EndPAD
$PAD "5"
Shape Oval Layer both
position 0.000000 0.400000 size 0.062992 0.062992 orientation 0.00
drill 0.031496
shape_offset 0.000000 0.000000
$EndPAD
$PAD "18"
Shape Oval Layer both
position 0.600000 1.000000 size 0.062992 0.062992 orientation 0.00
drill 0.031496
shape_offset 0.000000 0.000000
$EndPAD
$PAD "4"
Shape Oval Layer both
position 0.000000 0.300000 size 0.062992 0.062992 orientation 0.00
drill 0.031496
shape_offset 0.000000 0.000000
$EndPAD
$PAD "17"
Shape Oval Layer both
position 0.600000 1.100000 size 0.062992 0.062992 orientation 0.00
drill 0.031496
shape_offset 0.000000 0.000000
$EndPAD
$PAD "3"
Shape Oval Layer both
position 0.000000 0.200000 size 0.062992 0.062992 orientation 0.00
drill 0.031496
shape_offset 0.000000 0.000000
$EndPAD
$PAD "16"
Shape Oval Layer both
position 0.600000 1.200000 size 0.062992 0.062992 orientation 0.00
drill 0.031496
shape_offset 0.000000 0.000000
$EndPAD
$PAD "2"
Shape Oval Layer both
position 0.000000 0.100000 size 0.062992 0.062992 orientation 0.00
drill 0.031496
shape_offset 0.000000 0.000000
$EndPAD
$PAD "15"
Shape Oval Layer both
position 0.600000 1.300000 size 0.062992 0.062992 orientation 0.00
drill 0.031496
shape_offset 0.000000 0.000000
$EndPAD
$PAD "1"
Shape Rect Layer both
position 0.000000 0.000000 size 0.062992 0.062992 orientation 0.00
drill 0.031496
shape_offset 0.000000 0.000000
$EndPAD
$EndMODULE U1
$EndDESCRIPTION

Binary file not shown.

View File

@ -0,0 +1,158 @@
EESchema-LIBRARY Version 2.4
#encoding utf-8
#
# 74xx_74LS245
#
DEF 74xx_74LS245 U 0 40 Y Y 1 L N
F0 "U" -300 650 50 H V C CNN
F1 "74xx_74LS245" -300 -650 50 H V C CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
ALIAS 74HC245
$FPLIST
DIP?20*
$ENDFPLIST
DRAW
S -300 600 300 -600 1 1 10 f
P 3 1 0 0 -25 -50 -25 50 25 50 N
P 4 1 0 0 -50 -50 25 -50 25 50 50 50 N
X A->B 1 -500 -400 200 R 50 50 1 0 I
X GND 10 0 -800 200 U 50 50 1 0 W
X B7 11 500 -200 200 L 50 50 1 0 T
X B6 12 500 -100 200 L 50 50 1 0 T
X B5 13 500 0 200 L 50 50 1 0 T
X B4 14 500 100 200 L 50 50 1 0 T
X B3 15 500 200 200 L 50 50 1 0 T
X B2 16 500 300 200 L 50 50 1 0 T
X B1 17 500 400 200 L 50 50 1 0 T
X B0 18 500 500 200 L 50 50 1 0 T
X CE 19 -500 -500 200 R 50 50 1 0 I I
X A0 2 -500 500 200 R 50 50 1 0 T
X VCC 20 0 800 200 D 50 50 1 0 W
X A1 3 -500 400 200 R 50 50 1 0 T
X A2 4 -500 300 200 R 50 50 1 0 T
X A3 5 -500 200 200 R 50 50 1 0 T
X A4 6 -500 100 200 R 50 50 1 0 T
X A5 7 -500 0 200 R 50 50 1 0 T
X A6 8 -500 -100 200 R 50 50 1 0 T
X A7 9 -500 -200 200 R 50 50 1 0 T
ENDDRAW
ENDDEF
#
# Memory_EPROM_27C512
#
DEF Memory_EPROM_27C512 U 0 20 Y Y 1 F N
F0 "U" -300 1050 50 H V C CNN
F1 "Memory_EPROM_27C512" 100 -1050 50 H V L CNN
F2 "Package_DIP:DIP-28_W15.24mm" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
ALIAS 27512
$FPLIST
DIP*W15.24mm*
$ENDFPLIST
DRAW
S -300 1000 300 -1000 1 1 10 f
X A15 1 -400 -600 100 R 50 50 1 1 I
X A0 10 -400 900 100 R 50 50 1 1 I
X D0 11 400 900 100 L 50 50 1 1 T
X D1 12 400 800 100 L 50 50 1 1 T
X D2 13 400 700 100 L 50 50 1 1 T
X GND 14 0 -1100 100 U 50 50 1 1 W
X D3 15 400 600 100 L 50 50 1 1 T
X D4 16 400 500 100 L 50 50 1 1 T
X D5 17 400 400 100 L 50 50 1 1 T
X D6 18 400 300 100 L 50 50 1 1 T
X D7 19 400 200 100 L 50 50 1 1 T
X A12 2 -400 -300 100 R 50 50 1 1 I
X ~CE 20 -400 -800 100 R 50 50 1 1 I
X A10 21 -400 -100 100 R 50 50 1 1 I
X ~OE 22 -400 -900 100 R 50 50 1 1 I
X A11 23 -400 -200 100 R 50 50 1 1 I
X A9 24 -400 0 100 R 50 50 1 1 I
X A8 25 -400 100 100 R 50 50 1 1 I
X A13 26 -400 -400 100 R 50 50 1 1 I
X A14 27 -400 -500 100 R 50 50 1 1 I
X VCC 28 0 1100 100 D 50 50 1 1 W
X A7 3 -400 200 100 R 50 50 1 1 I
X A6 4 -400 300 100 R 50 50 1 1 I
X A5 5 -400 400 100 R 50 50 1 1 I
X A4 6 -400 500 100 R 50 50 1 1 I
X A3 7 -400 600 100 R 50 50 1 1 I
X A2 8 -400 700 100 R 50 50 1 1 I
X A1 9 -400 800 100 R 50 50 1 1 I
ENDDRAW
ENDDEF
#
# power_+3.3V
#
DEF power_+3.3V #PWR 0 0 Y Y 1 F P
F0 "#PWR" 0 -150 50 H I C CNN
F1 "power_+3.3V" 0 140 50 H V C CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
ALIAS +3.3V
DRAW
P 2 0 1 0 -30 50 0 100 N
P 2 0 1 0 0 0 0 100 N
P 2 0 1 0 0 100 30 50 N
X +3V3 1 0 0 0 U 50 50 1 1 W N
ENDDRAW
ENDDEF
#
# power_GND
#
DEF power_GND #PWR 0 0 Y Y 1 F P
F0 "#PWR" 0 -250 50 H I C CNN
F1 "power_GND" 0 -150 50 H V C CNN
F2 "" 0 0 50 H I C CNN
F3 "" 0 0 50 H I C CNN
DRAW
P 6 0 1 0 0 0 0 -50 50 -50 0 -100 -50 -50 0 -50 N
X GND 1 0 0 0 D 50 50 1 1 W N
ENDDRAW
ENDDEF
#
# teensy_Teensy4.0
#
DEF teensy_Teensy4.0 U 0 40 Y Y 1 F N
F0 "U" 0 1550 50 H V C CNN
F1 "teensy_Teensy4.0" 0 -1550 50 H V C CNN
F2 "" -400 200 50 H I C CNN
F3 "" -400 200 50 H I C CNN
DRAW
T 0 450 -950 50 0 0 0 "3.6V to 5.5V" Normal 0 C C
T 0 450 -1150 50 0 0 0 "max 250mA" Normal 0 C C
S -900 1450 900 -1450 0 1 0 N
S -800 -1250 -800 -1250 0 1 0 N
X 8_TX2_IN1 10 -1100 450 200 R 50 50 0 0 B
X 9_OUT1C 11 -1100 350 200 R 50 50 0 0 B
X 10_CS_MQSR 12 -1100 250 200 R 50 50 0 0 B
X 11_MOSI_CTX1 13 -1100 150 200 R 50 50 0 0 B
X 12_MISO_MQSL 14 -1100 50 200 R 50 50 0 0 B
X 13_SCK_CRX1_LED 20 -1100 -550 200 R 50 50 0 0 B
X 14_A0_TX3_SPDIF_OUT 21 -1100 -650 200 R 50 50 0 0 B
X 15_A1_RX3_SPDIF_IN 22 -1100 -750 200 R 50 50 0 0 B
X 16_A2_RX4_SCL1 23 -1100 -850 200 R 50 50 0 0 B
X 17_A3_TX4_SDA1 24 -1100 -950 200 R 50 50 0 0 B
X 18_A4_SDA0 25 -1100 -1050 200 R 50 50 0 0 B
X 19_A5_SCL0 26 -1100 -1150 200 R 50 50 0 0 B
X 20_A6_TX5_LRCLK1 27 -1100 -1250 200 R 50 50 0 0 B
X 21_A7_RX5_BCLK1 28 -1100 -1350 200 R 50 50 0 0 B
X 22_A8_CTX1 29 1100 -1350 200 L 50 50 0 0 B
X 23_A9_CRX1_MCLK1 30 1100 -1250 200 L 50 50 0 0 B
X 3V3 31 1100 -1150 200 L 50 50 0 0 w
X GND 32 1100 -1050 200 L 50 50 0 0 W
X VIN 33 1100 -950 200 L 50 50 0 0 W
X 3_LRCLK2 5 -1100 950 200 R 50 50 0 0 B
X 4_BCLK2 6 -1100 850 200 R 50 50 0 0 B
X 5_IN2 7 -1100 750 200 R 50 50 0 0 B
X 6_OUT1D 8 -1100 650 200 R 50 50 0 0 B
X 7_RX2_OUT1A 9 -1100 550 200 R 50 50 0 0 B
X GND 1 -1100 1350 200 R 50 50 1 1 W
X 0_RX1_CRX2_CS1 2 -1100 1250 200 R 50 50 1 1 B
X 1_TX1_CTX2_MISO1 3 -1100 1150 200 R 50 50 1 1 B
X 2_OUT2 4 -1100 1050 200 R 50 50 1 1 B
ENDDRAW
ENDDEF
#
#End Library

View File

@ -0,0 +1,151 @@
P CODE 00
P UNITS CUST 0
P arrayDim N
317GND VIA MD0157PA00X+003650Y+013390X0315Y0000R000S3
317GND VIA MD0157PA00X+002930Y+010690X0315Y0000R000S3
317GND VIA MD0157PA00X+003660Y+008470X0315Y0000R000S3
317GND VIA MD0157PA00X+002910Y+004260X0315Y0000R000S3
317GND VIA MD0157PA00X+002960Y+001190X0315Y0000R000S3
317GND VIA MD0157PA00X+004950Y+013340X0315Y0000R000S3
317GND VIA MD0157PA00X+005080Y+008490X0315Y0000R000S3
317GND VIA MD0157PA00X+002780Y+005780X0315Y0000R000S3
317V5_A0 VIA MD0157PA00X+003830Y+004640X0315Y0000R000S3
317V5_A1 VIA MD0157PA00X+003380Y+005730X0315Y0000R000S3
317OE_N VIA MD0157PA00X+005050Y+004710X0315Y0000R000S3
317V5_A2 VIA MD0157PA00X+004450Y+006690X0315Y0000R000S3
317V5_A3 VIA MD0157PA00X+004450Y+007620X0315Y0000R000S3
317V5_D6 VIA MD0157PA00X+004610Y+004130X0315Y0000R000S3
317V5_A6 VIA MD0157PA00X+004773Y+011231X0315Y0000R000S3
317V5_D5 VIA MD0157PA00X+004620Y+001640X0315Y0000R000S3
317V5_A7 VIA MD0157PA00X+004400Y+011690X0315Y0000R000S3
317V5_D4 VIA MD0157PA00X+004320Y+001190X0315Y0000R000S3
317V5_A12 VIA MD0157PA00X+004250Y+012640X0315Y0000R000S3
317V5_D3 VIA MD0157PA00X+003900Y+000670X0315Y0000R000S3
317+3V3 VIA MD0157PA00X+005790Y+013900X0315Y0000R000S3
317+3V3 VIA MD0157PA00X+005870Y+004360X0315Y0000R000S3
317+3V3 VIA MD0157PA00X+006060Y+008910X0315Y0000R000S3
317V3_D0 VIA MD0157PA00X+004520Y+003410X0315Y0000R000S3
317V3_D1 VIA MD0157PA00X+004290Y+002680X0315Y0000R000S3
317V3_D2 VIA MD0157PA00X+004620Y+002230X0315Y0000R000S3
317V3_A7 VIA MD0157PA00X+003600Y+012180X0315Y0000R000S3
317V3_A2 VIA MD0157PA00X+003940Y+007220X0315Y0000R000S3
317V3_A1 VIA MD0157PA00X+004610Y+006060X0315Y0000R000S3
317V3_A0 VIA MD0157PA00X+004030Y+005710X0315Y0000R000S3
317V3_A8 VIA MD0157PA00X+005630Y+010470X0315Y0000R000S3
317V3_D3 U3 -20 D0433PA00X+006770Y+000640X0630Y0000R090S0
317V3_D2 U3 -14 D0433PA00X+000770Y+000640X0630Y0000R090S0
317V3_D4 U3 -21 D0433PA00X+006770Y+001640X0630Y0000R090S0
317V3_D5 U3 -22 D0433PA00X+006770Y+002640X0630Y0000R090S0
317V3_D6 U3 -23 D0433PA00X+006770Y+003640X0630Y0000R090S0
317V3_D7 U3 -24 D0433PA00X+006770Y+004640X0630Y0000R090S0
317V3_A0 U3 -25 D0433PA00X+006770Y+005640X0630Y0000R090S0
317V3_A1 U3 -26 D0433PA00X+006770Y+006640X0630Y0000R090S0
317V3_A2 U3 -27 D0433PA00X+006770Y+007640X0630Y0000R090S0
317V3_A9 U3 -28 D0433PA00X+006770Y+008640X0630Y0000R090S0
317V3_A6 U3 -29 D0433PA00X+006770Y+009640X0630Y0000R090S0
317V3_A8 U3 -30 D0433PA00X+006770Y+010640X0630Y0000R090S0
317+3V3 U3 -31 D0433PA00X+006770Y+011640X0630Y0000R090S0
317GND U3 -32 D0433PA00X+006770Y+012640X0630Y0000R090S0
317NET-(U3-PAD33) U3 -33 D0433PA00X+006770Y+013640X0630Y0000R090S0
317V3_D1 U3 -13 D0433PA00X+000770Y+001640X0630Y0000R090S0
317V3_D0 U3 -12 D0433PA00X+000770Y+002640X0630Y0000R090S0
317V3_A3 U3 -11 D0433PA00X+000770Y+003640X0630Y0000R090S0
317V3_A10 U3 -10 D0433PA00X+000770Y+004640X0630Y0000R090S0
317V3_A4 U3 -9 D0433PA00X+000770Y+005640X0630Y0000R090S0
317V3_A11 U3 -8 D0433PA00X+000770Y+006640X0630Y0000R090S0
317V3_A5 U3 -7 D0433PA00X+000770Y+007640X0630Y0000R090S0
317V3_A7 U3 -6 D0433PA00X+000770Y+008640X0630Y0000R090S0
317V3_A13 U3 -5 D0433PA00X+000770Y+009640X0630Y0000R090S0
317V3_A12 U3 -4 D0433PA00X+000770Y+010640X0630Y0000R090S0
317V3_A14 U3 -3 D0433PA00X+000770Y+011640X0630Y0000R090S0
317V3_A15 U3 -2 D0433PA00X+000770Y+012640X0630Y0000R090S0
317GND U3 -1 D0433PA00X+000770Y+013640X0630Y0000R090S0
327GND U5 -1 A01X+002912Y+013462X0748Y0197R000S2
327V3_A15 U5 -2 A01X+002912Y+013206X0748Y0197R000S2
327V3_A14 U5 -3 A01X+002912Y+012950X0748Y0197R000S2
327V3_A12 U5 -4 A01X+002912Y+012694X0748Y0197R000S2
327V3_A13 U5 -5 A01X+002912Y+012438X0748Y0197R000S2
327V3_A7 U5 -6 A01X+002912Y+012182X0748Y0197R000S2
327V3_A8 U5 -7 A01X+002912Y+011926X0748Y0197R000S2
327V3_A6 U5 -8 A01X+002912Y+011670X0748Y0197R000S2
327V3_A9 U5 -9 A01X+002912Y+011414X0748Y0197R000S2
327GND U5 -10 A01X+002912Y+011158X0748Y0197R000S2
327V5_A9 U5 -11 A01X+005668Y+011158X0748Y0197R000S2
327V5_A6 U5 -12 A01X+005668Y+011414X0748Y0197R000S2
327V5_A8 U5 -13 A01X+005668Y+011670X0748Y0197R000S2
327V5_A7 U5 -14 A01X+005668Y+011926X0748Y0197R000S2
327V5_A13 U5 -15 A01X+005668Y+012182X0748Y0197R000S2
327V5_A12 U5 -16 A01X+005668Y+012438X0748Y0197R000S2
327V5_A14 U5 -17 A01X+005668Y+012694X0748Y0197R000S2
327V5_A15 U5 -18 A01X+005668Y+012950X0748Y0197R000S2
327GND U5 -19 A01X+005668Y+013206X0748Y0197R000S2
327+3V3 U5 -20 A01X+005668Y+013462X0748Y0197R000S2
327+3V3 U4 -20 A01X+005718Y+008502X0748Y0197R000S2
327GND U4 -19 A01X+005718Y+008246X0748Y0197R000S2
327V5_A5 U4 -18 A01X+005718Y+007990X0748Y0197R000S2
327V5_A11 U4 -17 A01X+005718Y+007734X0748Y0197R000S2
327V5_A4 U4 -16 A01X+005718Y+007478X0748Y0197R000S2
327V5_A10 U4 -15 A01X+005718Y+007222X0748Y0197R000S2
327V5_A3 U4 -14 A01X+005718Y+006966X0748Y0197R000S2
327V5_A2 U4 -13 A01X+005718Y+006710X0748Y0197R000S2
327V5_A1 U4 -12 A01X+005718Y+006454X0748Y0197R000S2
327V5_A0 U4 -11 A01X+005718Y+006198X0748Y0197R000S2
327GND U4 -10 A01X+002962Y+006198X0748Y0197R000S2
327V3_A0 U4 -9 A01X+002962Y+006454X0748Y0197R000S2
327V3_A1 U4 -8 A01X+002962Y+006710X0748Y0197R000S2
327V3_A2 U4 -7 A01X+002962Y+006966X0748Y0197R000S2
327V3_A3 U4 -6 A01X+002962Y+007222X0748Y0197R000S2
327V3_A10 U4 -5 A01X+002962Y+007478X0748Y0197R000S2
327V3_A4 U4 -4 A01X+002962Y+007734X0748Y0197R000S2
327V3_A11 U4 -3 A01X+002962Y+007990X0748Y0197R000S2
327V3_A5 U4 -2 A01X+002962Y+008246X0748Y0197R000S2
327GND U4 -1 A01X+002962Y+008502X0748Y0197R000S2
327+3V3 U2 -20 A01X+005698Y+003922X0748Y0197R000S2
327OE_N U2 -19 A01X+005698Y+003666X0748Y0197R000S2
327V3_D0 U2 -18 A01X+005698Y+003410X0748Y0197R000S2
327V3_D1 U2 -17 A01X+005698Y+003154X0748Y0197R000S2
327V3_D2 U2 -16 A01X+005698Y+002898X0748Y0197R000S2
327V3_D7 U2 -15 A01X+005698Y+002642X0748Y0197R000S2
327V3_D6 U2 -14 A01X+005698Y+002386X0748Y0197R000S2
327V3_D5 U2 -13 A01X+005698Y+002130X0748Y0197R000S2
327V3_D4 U2 -12 A01X+005698Y+001874X0748Y0197R000S2
327V3_D3 U2 -11 A01X+005698Y+001618X0748Y0197R000S2
327GND U2 -10 A01X+002942Y+001618X0748Y0197R000S2
327V5_D3 U2 -9 A01X+002942Y+001874X0748Y0197R000S2
327V5_D4 U2 -8 A01X+002942Y+002130X0748Y0197R000S2
327V5_D5 U2 -7 A01X+002942Y+002386X0748Y0197R000S2
327V5_D6 U2 -6 A01X+002942Y+002642X0748Y0197R000S2
327V5_D7 U2 -5 A01X+002942Y+002898X0748Y0197R000S2
327V5_D2 U2 -4 A01X+002942Y+003154X0748Y0197R000S2
327V5_D1 U2 -3 A01X+002942Y+003410X0748Y0197R000S2
327V5_D0 U2 -2 A01X+002942Y+003666X0748Y0197R000S2
327GND U2 -1 A01X+002942Y+003922X0748Y0197R000S2
317NET-(U1-PAD28) U1 -28 D0315PA00X+007740Y+013640X0630Y0630R000S0
317GND U1 -14 D0315PA00X+001740Y+000640X0630Y0630R000S0
317V5_A14 U1 -27 D0315PA00X+007740Y+012640X0630Y0630R000S0
317V5_D2 U1 -13 D0315PA00X+001740Y+001640X0630Y0630R000S0
317V5_A13 U1 -26 D0315PA00X+007740Y+011640X0630Y0630R000S0
317V5_D1 U1 -12 D0315PA00X+001740Y+002640X0630Y0630R000S0
317V5_A8 U1 -25 D0315PA00X+007740Y+010640X0630Y0630R000S0
317V5_D0 U1 -11 D0315PA00X+001740Y+003640X0630Y0630R000S0
317V5_A9 U1 -24 D0315PA00X+007740Y+009640X0630Y0630R000S0
317V5_A0 U1 -10 D0315PA00X+001740Y+004640X0630Y0630R000S0
317V5_A11 U1 -23 D0315PA00X+007740Y+008640X0630Y0630R000S0
317V5_A1 U1 -9 D0315PA00X+001740Y+005640X0630Y0630R000S0
317OE_N U1 -22 D0315PA00X+007740Y+007640X0630Y0630R000S0
317V5_A2 U1 -8 D0315PA00X+001740Y+006640X0630Y0630R000S0
317V5_A10 U1 -21 D0315PA00X+007740Y+006640X0630Y0630R000S0
317V5_A3 U1 -7 D0315PA00X+001740Y+007640X0630Y0630R000S0
317NET-(U1-PAD20) U1 -20 D0315PA00X+007740Y+005640X0630Y0630R000S0
317V5_A4 U1 -6 D0315PA00X+001740Y+008640X0630Y0630R000S0
317V5_D7 U1 -19 D0315PA00X+007740Y+004640X0630Y0630R000S0
317V5_A5 U1 -5 D0315PA00X+001740Y+009640X0630Y0630R000S0
317V5_D6 U1 -18 D0315PA00X+007740Y+003640X0630Y0630R000S0
317V5_A6 U1 -4 D0315PA00X+001740Y+010640X0630Y0630R000S0
317V5_D5 U1 -17 D0315PA00X+007740Y+002640X0630Y0630R000S0
317V5_A7 U1 -3 D0315PA00X+001740Y+011640X0630Y0630R000S0
317V5_D4 U1 -16 D0315PA00X+007740Y+001640X0630Y0630R000S0
317V5_A12 U1 -2 D0315PA00X+001740Y+012640X0630Y0630R000S0
317V5_D3 U1 -15 D0315PA00X+007740Y+000640X0630Y0630R000S0
317V5_A15 U1 -1 D0315PA00X+001740Y+013640X0630Y0630R000S0
999

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@ -0,0 +1,238 @@
update=2/5/2021 11:33:01 PM
version=1
last_client=kicad
[general]
version=1
RootSch=
BoardNm=
[cvpcb]
version=1
NetIExt=net
[eeschema]
version=1
LibDir=
[eeschema/libraries]
[pcbnew]
version=1
PageLayoutDescrFile=
LastNetListRead=
CopperLayerCount=2
BoardThickness=1.6
AllowMicroVias=0
AllowBlindVias=0
RequireCourtyardDefinitions=0
ProhibitOverlappingCourtyards=1
MinTrackWidth=0.1524
MinViaDiameter=0.4
MinViaDrill=0.3
MinMicroViaDiameter=0.2
MinMicroViaDrill=0.09999999999999999
MinHoleToHole=0.25
TrackWidth1=0.1524
ViaDiameter1=0.8
ViaDrill1=0.4
dPairWidth1=0.2
dPairGap1=0.25
dPairViaGap1=0.25
SilkLineWidth=0.12
SilkTextSizeV=1
SilkTextSizeH=1
SilkTextSizeThickness=0.15
SilkTextItalic=0
SilkTextUpright=1
CopperLineWidth=0.2
CopperTextSizeV=1.5
CopperTextSizeH=1.5
CopperTextThickness=0.3
CopperTextItalic=0
CopperTextUpright=1
EdgeCutLineWidth=0.05
CourtyardLineWidth=0.05
OthersLineWidth=0.15
OthersTextSizeV=1
OthersTextSizeH=1
OthersTextSizeThickness=0.15
OthersTextItalic=0
OthersTextUpright=1
SolderMaskClearance=0
SolderMaskMinWidth=0
SolderPasteClearance=0
SolderPasteRatio=-0
[pcbnew/Layer.F.Cu]
Name=F.Cu
Type=0
Enabled=1
[pcbnew/Layer.In1.Cu]
Name=In1.Cu
Type=0
Enabled=0
[pcbnew/Layer.In2.Cu]
Name=In2.Cu
Type=0
Enabled=0
[pcbnew/Layer.In3.Cu]
Name=In3.Cu
Type=0
Enabled=0
[pcbnew/Layer.In4.Cu]
Name=In4.Cu
Type=0
Enabled=0
[pcbnew/Layer.In5.Cu]
Name=In5.Cu
Type=0
Enabled=0
[pcbnew/Layer.In6.Cu]
Name=In6.Cu
Type=0
Enabled=0
[pcbnew/Layer.In7.Cu]
Name=In7.Cu
Type=0
Enabled=0
[pcbnew/Layer.In8.Cu]
Name=In8.Cu
Type=0
Enabled=0
[pcbnew/Layer.In9.Cu]
Name=In9.Cu
Type=0
Enabled=0
[pcbnew/Layer.In10.Cu]
Name=In10.Cu
Type=0
Enabled=0
[pcbnew/Layer.In11.Cu]
Name=In11.Cu
Type=0
Enabled=0
[pcbnew/Layer.In12.Cu]
Name=In12.Cu
Type=0
Enabled=0
[pcbnew/Layer.In13.Cu]
Name=In13.Cu
Type=0
Enabled=0
[pcbnew/Layer.In14.Cu]
Name=In14.Cu
Type=0
Enabled=0
[pcbnew/Layer.In15.Cu]
Name=In15.Cu
Type=0
Enabled=0
[pcbnew/Layer.In16.Cu]
Name=In16.Cu
Type=0
Enabled=0
[pcbnew/Layer.In17.Cu]
Name=In17.Cu
Type=0
Enabled=0
[pcbnew/Layer.In18.Cu]
Name=In18.Cu
Type=0
Enabled=0
[pcbnew/Layer.In19.Cu]
Name=In19.Cu
Type=0
Enabled=0
[pcbnew/Layer.In20.Cu]
Name=In20.Cu
Type=0
Enabled=0
[pcbnew/Layer.In21.Cu]
Name=In21.Cu
Type=0
Enabled=0
[pcbnew/Layer.In22.Cu]
Name=In22.Cu
Type=0
Enabled=0
[pcbnew/Layer.In23.Cu]
Name=In23.Cu
Type=0
Enabled=0
[pcbnew/Layer.In24.Cu]
Name=In24.Cu
Type=0
Enabled=0
[pcbnew/Layer.In25.Cu]
Name=In25.Cu
Type=0
Enabled=0
[pcbnew/Layer.In26.Cu]
Name=In26.Cu
Type=0
Enabled=0
[pcbnew/Layer.In27.Cu]
Name=In27.Cu
Type=0
Enabled=0
[pcbnew/Layer.In28.Cu]
Name=In28.Cu
Type=0
Enabled=0
[pcbnew/Layer.In29.Cu]
Name=In29.Cu
Type=0
Enabled=0
[pcbnew/Layer.In30.Cu]
Name=In30.Cu
Type=0
Enabled=0
[pcbnew/Layer.B.Cu]
Name=B.Cu
Type=0
Enabled=1
[pcbnew/Layer.B.Adhes]
Enabled=1
[pcbnew/Layer.F.Adhes]
Enabled=1
[pcbnew/Layer.B.Paste]
Enabled=1
[pcbnew/Layer.F.Paste]
Enabled=1
[pcbnew/Layer.B.SilkS]
Enabled=1
[pcbnew/Layer.F.SilkS]
Enabled=1
[pcbnew/Layer.B.Mask]
Enabled=1
[pcbnew/Layer.F.Mask]
Enabled=1
[pcbnew/Layer.Dwgs.User]
Enabled=1
[pcbnew/Layer.Cmts.User]
Enabled=1
[pcbnew/Layer.Eco1.User]
Enabled=1
[pcbnew/Layer.Eco2.User]
Enabled=1
[pcbnew/Layer.Edge.Cuts]
Enabled=1
[pcbnew/Layer.Margin]
Enabled=1
[pcbnew/Layer.B.CrtYd]
Enabled=1
[pcbnew/Layer.F.CrtYd]
Enabled=1
[pcbnew/Layer.B.Fab]
Enabled=1
[pcbnew/Layer.F.Fab]
Enabled=1
[pcbnew/Layer.Rescue]
Enabled=0
[pcbnew/Netclasses]
[pcbnew/Netclasses/Default]
Name=Default
Clearance=0.1524
TrackWidth=0.1524
ViaDiameter=0.8
ViaDrill=0.4
uViaDiameter=0.3
uViaDrill=0.1
dPairWidth=0.2
dPairGap=0.25
dPairViaGap=0.25

View File

@ -0,0 +1,661 @@
EESchema Schematic File Version 4
EELAYER 30 0
EELAYER END
$Descr A4 11693 8268
encoding utf-8
Sheet 1 1
Title ""
Date ""
Rev ""
Comp ""
Comment1 ""
Comment2 ""
Comment3 ""
Comment4 ""
$EndDescr
$Comp
L Memory_EPROM:27C512 U1
U 1 1 601A8B4C
P 1800 2700
F 0 "U1" H 1450 3900 50 0000 C CNN
F 1 "27C512" H 1450 3800 50 0000 C CNN
F 2 "Package_DIP:DIP-28_W15.24mm" H 1800 2700 50 0001 C CNN
F 3 "http://ww1.microchip.com/downloads/en/DeviceDoc/doc0015.pdf" H 1800 2700 50 0001 C CNN
1 1800 2700
1 0 0 -1
$EndComp
Wire Wire Line
2500 1800 2200 1800
Text GLabel 2500 1900 2 50 Input ~ 0
V5_D1
Wire Wire Line
2500 1900 2200 1900
Text GLabel 2500 2000 2 50 Input ~ 0
V5_D2
Wire Wire Line
2500 2000 2200 2000
Text GLabel 2500 2100 2 50 Input ~ 0
V5_D3
Wire Wire Line
2500 2100 2200 2100
Text GLabel 2500 2200 2 50 Input ~ 0
V5_D4
Wire Wire Line
2500 2200 2200 2200
Text GLabel 2500 2300 2 50 Input ~ 0
V5_D5
Wire Wire Line
2500 2300 2200 2300
Text GLabel 2500 2400 2 50 Input ~ 0
V5_D6
Wire Wire Line
2500 2400 2200 2400
Text GLabel 2500 2500 2 50 Input ~ 0
V5_D7
Wire Wire Line
2500 2500 2200 2500
Text GLabel 5750 2100 2 50 Input ~ 0
V3_D0
Wire Wire Line
5750 2100 5450 2100
Text GLabel 5750 2200 2 50 Input ~ 0
V3_D1
Wire Wire Line
5750 2200 5450 2200
Text GLabel 5750 2300 2 50 Input ~ 0
V3_D2
Wire Wire Line
5750 2300 5450 2300
Wire Wire Line
5750 2400 5450 2400
Text GLabel 5750 2500 2 50 Input ~ 0
V3_D6
Wire Wire Line
5750 2500 5450 2500
Text GLabel 5750 2600 2 50 Input ~ 0
V3_D5
Wire Wire Line
5750 2600 5450 2600
Wire Wire Line
5750 2700 5450 2700
Wire Wire Line
5750 2800 5450 2800
Text GLabel 4150 2800 0 50 Input ~ 0
V5_D3
Text GLabel 4150 2700 0 50 Input ~ 0
V5_D4
Text GLabel 4150 2600 0 50 Input ~ 0
V5_D5
Text GLabel 4150 2500 0 50 Input ~ 0
V5_D6
Text GLabel 4150 2400 0 50 Input ~ 0
V5_D7
Text GLabel 4150 2300 0 50 Input ~ 0
V5_D2
Text GLabel 4150 2200 0 50 Input ~ 0
V5_D1
Text GLabel 4150 2100 0 50 Input ~ 0
V5_D0
Text GLabel 2500 1800 2 50 Input ~ 0
V5_D0
Wire Wire Line
1100 2500 1400 2500
Text GLabel 1100 2500 0 50 Input ~ 0
V5_A7
Wire Wire Line
1100 2400 1400 2400
Text GLabel 1100 2400 0 50 Input ~ 0
V5_A6
Wire Wire Line
1100 2300 1400 2300
Text GLabel 1100 2300 0 50 Input ~ 0
V5_A5
Wire Wire Line
1100 2200 1400 2200
Text GLabel 1100 2200 0 50 Input ~ 0
V5_A4
Wire Wire Line
1100 2100 1400 2100
Text GLabel 1100 2100 0 50 Input ~ 0
V5_A3
Wire Wire Line
1100 2000 1400 2000
Text GLabel 1100 2000 0 50 Input ~ 0
V5_A2
Wire Wire Line
1100 1900 1400 1900
Text GLabel 1100 1900 0 50 Input ~ 0
V5_A1
Wire Wire Line
1100 1800 1400 1800
Text GLabel 1100 1800 0 50 Input ~ 0
V5_A0
Wire Wire Line
1100 3300 1400 3300
Text GLabel 1100 3300 0 50 Input ~ 0
V5_A15
Wire Wire Line
1100 3200 1400 3200
Text GLabel 1100 3200 0 50 Input ~ 0
V5_A14
Wire Wire Line
1100 3100 1400 3100
Text GLabel 1100 3100 0 50 Input ~ 0
V5_A13
Wire Wire Line
1100 3000 1400 3000
Text GLabel 1100 3000 0 50 Input ~ 0
V5_A12
Wire Wire Line
1100 2900 1400 2900
Text GLabel 1100 2900 0 50 Input ~ 0
V5_A11
Wire Wire Line
1100 2800 1400 2800
Text GLabel 1100 2800 0 50 Input ~ 0
V5_A10
Wire Wire Line
1100 2700 1400 2700
Text GLabel 1100 2700 0 50 Input ~ 0
V5_A9
Wire Wire Line
1100 2600 1400 2600
Text GLabel 1100 2600 0 50 Input ~ 0
V5_A8
$Comp
L power:GND #PWR01
U 1 1 601AFAF8
P 1800 3950
F 0 "#PWR01" H 1800 3700 50 0001 C CNN
F 1 "GND" H 1805 3777 50 0000 C CNN
F 2 "" H 1800 3950 50 0001 C CNN
F 3 "" H 1800 3950 50 0001 C CNN
1 1800 3950
1 0 0 -1
$EndComp
Wire Wire Line
1800 3950 1800 3800
$Comp
L power:GND #PWR04
U 1 1 601B12E9
P 4950 3550
F 0 "#PWR04" H 4950 3300 50 0001 C CNN
F 1 "GND" H 4955 3377 50 0000 C CNN
F 2 "" H 4950 3550 50 0001 C CNN
F 3 "" H 4950 3550 50 0001 C CNN
1 4950 3550
1 0 0 -1
$EndComp
Wire Wire Line
4950 3550 4950 3400
$Comp
L power:+3.3V #PWR03
U 1 1 601B2BA8
P 4950 1650
F 0 "#PWR03" H 4950 1500 50 0001 C CNN
F 1 "+3.3V" H 4965 1823 50 0000 C CNN
F 2 "" H 4950 1650 50 0001 C CNN
F 3 "" H 4950 1650 50 0001 C CNN
1 4950 1650
1 0 0 -1
$EndComp
Wire Wire Line
4950 1800 4950 1650
Wire Wire Line
1100 3600 1400 3600
Text GLabel 1100 3600 0 50 Input ~ 0
OE_n
Text GLabel 4150 3100 0 50 Input ~ 0
OE_n
Wire Wire Line
4150 3100 4450 3100
Wire Wire Line
4150 2800 4450 2800
Wire Wire Line
4150 2700 4450 2700
Wire Wire Line
4150 2600 4450 2600
Wire Wire Line
4150 2500 4450 2500
Wire Wire Line
4150 2400 4450 2400
Wire Wire Line
4150 2300 4450 2300
Wire Wire Line
4150 2200 4450 2200
Wire Wire Line
4150 2100 4450 2100
$Comp
L 74xx:74LS245 U2
U 1 1 601A9F2F
P 4950 2600
F 0 "U2" H 4500 3450 50 0000 C CNN
F 1 "74LS245" H 4600 3350 50 0000 C CNN
F 2 "Package_SO:SSOP-20_5.3x7.2mm_P0.65mm" H 4950 2600 50 0001 C CNN
F 3 "http://www.ti.com/lit/gpn/sn74LS245" H 4950 2600 50 0001 C CNN
1 4950 2600
1 0 0 -1
$EndComp
$Comp
L power:GND #PWR02
U 1 1 601BD23C
P 3750 3150
F 0 "#PWR02" H 3750 2900 50 0001 C CNN
F 1 "GND" H 3755 2977 50 0000 C CNN
F 2 "" H 3750 3150 50 0001 C CNN
F 3 "" H 3750 3150 50 0001 C CNN
1 3750 3150
1 0 0 -1
$EndComp
Wire Wire Line
3750 3150 3750 3000
Wire Wire Line
4450 3000 3750 3000
$Comp
L power:GND #PWR0101
U 1 1 601CCD89
P 3150 7000
F 0 "#PWR0101" H 3150 6750 50 0001 C CNN
F 1 "GND" H 3155 6827 50 0000 C CNN
F 2 "" H 3150 7000 50 0001 C CNN
F 3 "" H 3150 7000 50 0001 C CNN
1 3150 7000
1 0 0 -1
$EndComp
Wire Wire Line
3150 7000 3150 6850
$Comp
L power:+3.3V #PWR0102
U 1 1 601CCD90
P 3150 5100
F 0 "#PWR0102" H 3150 4950 50 0001 C CNN
F 1 "+3.3V" H 3165 5273 50 0000 C CNN
F 2 "" H 3150 5100 50 0001 C CNN
F 3 "" H 3150 5100 50 0001 C CNN
1 3150 5100
1 0 0 -1
$EndComp
Wire Wire Line
3150 5250 3150 5100
$Comp
L 74xx:74LS245 U4
U 1 1 601CCDA1
P 3150 6050
F 0 "U4" H 2700 6900 50 0000 C CNN
F 1 "74LS245" H 2800 6800 50 0000 C CNN
F 2 "Package_SO:SSOP-20_5.3x7.2mm_P0.65mm" H 3150 6050 50 0001 C CNN
F 3 "http://www.ti.com/lit/gpn/sn74LS245" H 3150 6050 50 0001 C CNN
1 3150 6050
1 0 0 -1
$EndComp
$Comp
L power:GND #PWR0103
U 1 1 601CCDA7
P 1950 6600
F 0 "#PWR0103" H 1950 6350 50 0001 C CNN
F 1 "GND" H 1955 6427 50 0000 C CNN
F 2 "" H 1950 6600 50 0001 C CNN
F 3 "" H 1950 6600 50 0001 C CNN
1 1950 6600
1 0 0 -1
$EndComp
Wire Wire Line
1950 6600 1950 6450
Wire Wire Line
2650 6450 2450 6450
Text GLabel 3950 5550 2 50 Input ~ 0
V5_A5
Wire Wire Line
3950 5550 3650 5550
Wire Wire Line
2450 6550 2650 6550
Wire Wire Line
2450 6550 2450 6450
Connection ~ 2450 6450
Wire Wire Line
2450 6450 1950 6450
$Comp
L power:GND #PWR0104
U 1 1 601FC8DE
P 6400 7000
F 0 "#PWR0104" H 6400 6750 50 0001 C CNN
F 1 "GND" H 6405 6827 50 0000 C CNN
F 2 "" H 6400 7000 50 0001 C CNN
F 3 "" H 6400 7000 50 0001 C CNN
1 6400 7000
1 0 0 -1
$EndComp
Wire Wire Line
6400 7000 6400 6850
$Comp
L power:+3.3V #PWR0105
U 1 1 601FC8E5
P 6400 5100
F 0 "#PWR0105" H 6400 4950 50 0001 C CNN
F 1 "+3.3V" H 6415 5273 50 0000 C CNN
F 2 "" H 6400 5100 50 0001 C CNN
F 3 "" H 6400 5100 50 0001 C CNN
1 6400 5100
1 0 0 -1
$EndComp
Wire Wire Line
6400 5250 6400 5100
$Comp
L 74xx:74LS245 U5
U 1 1 601FC8F4
P 6400 6050
F 0 "U5" H 5950 6900 50 0000 C CNN
F 1 "74LS245" H 6050 6800 50 0000 C CNN
F 2 "Package_SO:SSOP-20_5.3x7.2mm_P0.65mm" H 6400 6050 50 0001 C CNN
F 3 "http://www.ti.com/lit/gpn/sn74LS245" H 6400 6050 50 0001 C CNN
1 6400 6050
1 0 0 -1
$EndComp
$Comp
L power:GND #PWR0106
U 1 1 601FC8FA
P 5200 6600
F 0 "#PWR0106" H 5200 6350 50 0001 C CNN
F 1 "GND" H 5205 6427 50 0000 C CNN
F 2 "" H 5200 6600 50 0001 C CNN
F 3 "" H 5200 6600 50 0001 C CNN
1 5200 6600
1 0 0 -1
$EndComp
Wire Wire Line
5200 6600 5200 6450
Wire Wire Line
5900 6450 5700 6450
Text GLabel 7200 5650 2 50 Input ~ 0
V5_A14
Text GLabel 7200 5850 2 50 Input ~ 0
V5_A13
Wire Wire Line
7200 5850 6900 5850
Wire Wire Line
5700 6550 5900 6550
Wire Wire Line
5700 6550 5700 6450
Connection ~ 5700 6450
Wire Wire Line
5700 6450 5200 6450
Text Notes 750 850 0 118 ~ 0
MicroCore Labs - ROM Emulator\n
Text GLabel 5750 2400 2 50 Input ~ 0
V3_D7
Text GLabel 7450 2700 0 50 Input ~ 0
V3_D0
Wire Wire Line
7450 2700 7750 2700
Text GLabel 7450 2800 0 50 Input ~ 0
V3_D1
Wire Wire Line
7450 2800 7750 2800
Text GLabel 7450 2900 0 50 Input ~ 0
V3_D2
Wire Wire Line
7450 2900 7750 2900
Text GLabel 5750 2800 2 50 Input ~ 0
V3_D3
Text GLabel 5750 2700 2 50 Input ~ 0
V3_D4
Text GLabel 7450 3600 0 50 Input ~ 0
V3_D4
Text GLabel 7450 3500 0 50 Input ~ 0
V3_D3
Text GLabel 7450 3900 0 50 Input ~ 0
V3_D7
Wire Wire Line
7450 3500 7750 3500
Wire Wire Line
7450 3600 7750 3600
Wire Wire Line
7450 3700 7750 3700
Text GLabel 7450 3700 0 50 Input ~ 0
V3_D5
Wire Wire Line
7450 3800 7750 3800
Text GLabel 7450 3800 0 50 Input ~ 0
V3_D6
Wire Wire Line
7450 3900 7750 3900
Text GLabel 7450 2100 0 50 Input ~ 0
V3_A7
Text GLabel 10250 4300 2 50 Input ~ 0
V3_A6
Text GLabel 7450 2400 0 50 Input ~ 0
V3_A4
Wire Wire Line
7450 2100 7750 2100
Wire Wire Line
10250 4300 9950 4300
Wire Wire Line
7450 2400 7750 2400
Wire Wire Line
7200 5550 6900 5550
Text GLabel 7200 5550 2 50 Input ~ 0
V5_A15
Text GLabel 7450 1900 0 50 Input ~ 0
V3_A12
Wire Wire Line
7450 1900 7750 1900
Text GLabel 7450 1800 0 50 Input ~ 0
V3_A14
Wire Wire Line
7450 1800 7750 1800
Text GLabel 7450 2300 0 50 Input ~ 0
V3_A11
Wire Wire Line
7450 2300 7750 2300
$Comp
L power:GND #PWR0107
U 1 1 60270919
P 6850 1700
F 0 "#PWR0107" H 6850 1450 50 0001 C CNN
F 1 "GND" H 6855 1527 50 0000 C CNN
F 2 "" H 6850 1700 50 0001 C CNN
F 3 "" H 6850 1700 50 0001 C CNN
1 6850 1700
1 0 0 -1
$EndComp
$Comp
L power:GND #PWR0108
U 1 1 6027B17F
P 10700 4150
F 0 "#PWR0108" H 10700 3900 50 0001 C CNN
F 1 "GND" H 10705 3977 50 0000 C CNN
F 2 "" H 10700 4150 50 0001 C CNN
F 3 "" H 10700 4150 50 0001 C CNN
1 10700 4150
1 0 0 -1
$EndComp
Text GLabel 7450 2000 0 50 Input ~ 0
V3_A13
Wire Wire Line
7450 2000 7750 2000
$Comp
L power:+3.3V #PWR0109
U 1 1 60290E82
P 10600 4300
F 0 "#PWR0109" H 10600 4150 50 0001 C CNN
F 1 "+3.3V" H 10615 4473 50 0000 C CNN
F 2 "" H 10600 4300 50 0001 C CNN
F 3 "" H 10600 4300 50 0001 C CNN
1 10600 4300
1 0 0 1
$EndComp
Wire Wire Line
9950 4100 10600 4100
Wire Wire Line
10600 4100 10600 4300
NoConn ~ 9950 3900
Wire Wire Line
6850 1600 6850 1700
Wire Wire Line
6850 1600 7750 1600
Wire Wire Line
7450 1700 7750 1700
Text GLabel 7450 1700 0 50 Input ~ 0
V3_A15
$Comp
L teensy:Teensy4.0 U3
U 1 1 601A6865
P 8850 2950
F 0 "U3" H 8850 4565 50 0000 C CNN
F 1 "Teensy4.0" H 8850 4474 50 0000 C CNN
F 2 "Teensy:Teensy40" H 8450 3150 50 0001 C CNN
F 3 "" H 8450 3150 50 0001 C CNN
1 8850 2950
1 0 0 -1
$EndComp
Wire Wire Line
7450 4300 7750 4300
Text GLabel 7450 4300 0 50 Input ~ 0
V3_A9
Wire Wire Line
10250 4200 9950 4200
Text GLabel 10250 4200 2 50 Input ~ 0
V3_A8
Wire Wire Line
7200 5750 6900 5750
Text GLabel 7200 5750 2 50 Input ~ 0
V5_A12
Wire Wire Line
7200 5650 6900 5650
Text GLabel 7200 6050 2 50 Input ~ 0
V5_A8
Text GLabel 7200 6250 2 50 Input ~ 0
V5_A9
Wire Wire Line
7200 6250 6900 6250
Wire Wire Line
7200 5950 6900 5950
Text GLabel 7200 5950 2 50 Input ~ 0
V5_A7
Wire Wire Line
7200 6150 6900 6150
Text GLabel 7200 6150 2 50 Input ~ 0
V5_A6
Wire Wire Line
7200 6050 6900 6050
Text GLabel 5600 5650 0 50 Input ~ 0
V3_A14
Text GLabel 5600 5850 0 50 Input ~ 0
V3_A13
Wire Wire Line
5600 5850 5900 5850
Wire Wire Line
5600 5550 5900 5550
Text GLabel 5600 5550 0 50 Input ~ 0
V3_A15
Wire Wire Line
5600 5750 5900 5750
Text GLabel 5600 5750 0 50 Input ~ 0
V3_A12
Wire Wire Line
5600 5650 5900 5650
Text GLabel 5600 6050 0 50 Input ~ 0
V3_A8
Text GLabel 5600 6250 0 50 Input ~ 0
V3_A9
Wire Wire Line
5600 6250 5900 6250
Wire Wire Line
5600 5950 5900 5950
Text GLabel 5600 5950 0 50 Input ~ 0
V3_A7
Wire Wire Line
5600 6150 5900 6150
Text GLabel 5600 6150 0 50 Input ~ 0
V3_A6
Wire Wire Line
5600 6050 5900 6050
Text GLabel 3950 5650 2 50 Input ~ 0
V5_A11
Wire Wire Line
3950 5650 3650 5650
Text GLabel 3950 5750 2 50 Input ~ 0
V5_A4
Wire Wire Line
3950 5750 3650 5750
Text GLabel 3950 5850 2 50 Input ~ 0
V5_A10
Wire Wire Line
3950 5850 3650 5850
Text GLabel 3950 5950 2 50 Input ~ 0
V5_A3
Wire Wire Line
3950 5950 3650 5950
Text GLabel 3950 6050 2 50 Input ~ 0
V5_A2
Wire Wire Line
3950 6050 3650 6050
Text GLabel 3950 6150 2 50 Input ~ 0
V5_A1
Wire Wire Line
3950 6150 3650 6150
Text GLabel 3950 6250 2 50 Input ~ 0
V5_A0
Wire Wire Line
3950 6250 3650 6250
Text GLabel 2350 5550 0 50 Input ~ 0
V3_A5
Wire Wire Line
2350 5550 2650 5550
Text GLabel 2350 5650 0 50 Input ~ 0
V3_A11
Wire Wire Line
2350 5650 2650 5650
Text GLabel 2350 5750 0 50 Input ~ 0
V3_A4
Wire Wire Line
2350 5750 2650 5750
Text GLabel 2350 5850 0 50 Input ~ 0
V3_A10
Wire Wire Line
2350 5850 2650 5850
Text GLabel 2350 5950 0 50 Input ~ 0
V3_A3
Wire Wire Line
2350 5950 2650 5950
Text GLabel 2350 6050 0 50 Input ~ 0
V3_A2
Wire Wire Line
2350 6050 2650 6050
Text GLabel 2350 6150 0 50 Input ~ 0
V3_A1
Wire Wire Line
2350 6150 2650 6150
Text GLabel 2350 6250 0 50 Input ~ 0
V3_A0
Wire Wire Line
2350 6250 2650 6250
Wire Wire Line
7450 2200 7750 2200
Text GLabel 7450 2200 0 50 Input ~ 0
V3_A5
Wire Wire Line
9950 4000 10700 4000
Wire Wire Line
10700 4150 10700 4000
Text GLabel 7450 2500 0 50 Input ~ 0
V3_A10
Wire Wire Line
7450 2500 7750 2500
Text GLabel 7450 2600 0 50 Input ~ 0
V3_A3
Wire Wire Line
7450 2600 7750 2600
Text GLabel 7450 4000 0 50 Input ~ 0
V3_A0
Wire Wire Line
7450 4000 7750 4000
Text GLabel 7450 4100 0 50 Input ~ 0
V3_A1
Wire Wire Line
7450 4100 7750 4100
Text GLabel 7450 4200 0 50 Input ~ 0
V3_A2
Wire Wire Line
7450 4200 7750 4200
$EndSCHEMATC

View File

@ -0,0 +1,661 @@
EESchema Schematic File Version 4
EELAYER 30 0
EELAYER END
$Descr A4 11693 8268
encoding utf-8
Sheet 1 1
Title ""
Date ""
Rev ""
Comp ""
Comment1 ""
Comment2 ""
Comment3 ""
Comment4 ""
$EndDescr
$Comp
L Memory_EPROM:27C512 U1
U 1 1 601A8B4C
P 1800 2700
F 0 "U1" H 1450 3900 50 0000 C CNN
F 1 "27C512" H 1450 3800 50 0000 C CNN
F 2 "Package_DIP:DIP-28_W15.24mm" H 1800 2700 50 0001 C CNN
F 3 "http://ww1.microchip.com/downloads/en/DeviceDoc/doc0015.pdf" H 1800 2700 50 0001 C CNN
1 1800 2700
1 0 0 -1
$EndComp
Wire Wire Line
2500 1800 2200 1800
Text GLabel 2500 1900 2 50 Input ~ 0
V5_D1
Wire Wire Line
2500 1900 2200 1900
Text GLabel 2500 2000 2 50 Input ~ 0
V5_D2
Wire Wire Line
2500 2000 2200 2000
Text GLabel 2500 2100 2 50 Input ~ 0
V5_D3
Wire Wire Line
2500 2100 2200 2100
Text GLabel 2500 2200 2 50 Input ~ 0
V5_D4
Wire Wire Line
2500 2200 2200 2200
Text GLabel 2500 2300 2 50 Input ~ 0
V5_D5
Wire Wire Line
2500 2300 2200 2300
Text GLabel 2500 2400 2 50 Input ~ 0
V5_D6
Wire Wire Line
2500 2400 2200 2400
Text GLabel 2500 2500 2 50 Input ~ 0
V5_D7
Wire Wire Line
2500 2500 2200 2500
Text GLabel 5750 2100 2 50 Input ~ 0
V3_D0
Wire Wire Line
5750 2100 5450 2100
Text GLabel 5750 2200 2 50 Input ~ 0
V3_D1
Wire Wire Line
5750 2200 5450 2200
Text GLabel 5750 2300 2 50 Input ~ 0
V3_D2
Wire Wire Line
5750 2300 5450 2300
Wire Wire Line
5750 2400 5450 2400
Text GLabel 5750 2500 2 50 Input ~ 0
V3_D6
Wire Wire Line
5750 2500 5450 2500
Text GLabel 5750 2600 2 50 Input ~ 0
V3_D5
Wire Wire Line
5750 2600 5450 2600
Wire Wire Line
5750 2700 5450 2700
Wire Wire Line
5750 2800 5450 2800
Text GLabel 4150 2800 0 50 Input ~ 0
V5_D3
Text GLabel 4150 2700 0 50 Input ~ 0
V5_D4
Text GLabel 4150 2600 0 50 Input ~ 0
V5_D5
Text GLabel 4150 2500 0 50 Input ~ 0
V5_D6
Text GLabel 4150 2400 0 50 Input ~ 0
V5_D7
Text GLabel 4150 2300 0 50 Input ~ 0
V5_D2
Text GLabel 4150 2200 0 50 Input ~ 0
V5_D1
Text GLabel 4150 2100 0 50 Input ~ 0
V5_D0
Text GLabel 2500 1800 2 50 Input ~ 0
V5_D0
Wire Wire Line
1100 2500 1400 2500
Text GLabel 1100 2500 0 50 Input ~ 0
V5_A7
Wire Wire Line
1100 2400 1400 2400
Text GLabel 1100 2400 0 50 Input ~ 0
V5_A6
Wire Wire Line
1100 2300 1400 2300
Text GLabel 1100 2300 0 50 Input ~ 0
V5_A5
Wire Wire Line
1100 2200 1400 2200
Text GLabel 1100 2200 0 50 Input ~ 0
V5_A4
Wire Wire Line
1100 2100 1400 2100
Text GLabel 1100 2100 0 50 Input ~ 0
V5_A3
Wire Wire Line
1100 2000 1400 2000
Text GLabel 1100 2000 0 50 Input ~ 0
V5_A2
Wire Wire Line
1100 1900 1400 1900
Text GLabel 1100 1900 0 50 Input ~ 0
V5_A1
Wire Wire Line
1100 1800 1400 1800
Text GLabel 1100 1800 0 50 Input ~ 0
V5_A0
Wire Wire Line
1100 3300 1400 3300
Text GLabel 1100 3300 0 50 Input ~ 0
V5_A15
Wire Wire Line
1100 3200 1400 3200
Text GLabel 1100 3200 0 50 Input ~ 0
V5_A14
Wire Wire Line
1100 3100 1400 3100
Text GLabel 1100 3100 0 50 Input ~ 0
V5_A13
Wire Wire Line
1100 3000 1400 3000
Text GLabel 1100 3000 0 50 Input ~ 0
V5_A12
Wire Wire Line
1100 2900 1400 2900
Text GLabel 1100 2900 0 50 Input ~ 0
V5_A11
Wire Wire Line
1100 2800 1400 2800
Text GLabel 1100 2800 0 50 Input ~ 0
V5_A10
Wire Wire Line
1100 2700 1400 2700
Text GLabel 1100 2700 0 50 Input ~ 0
V5_A9
Wire Wire Line
1100 2600 1400 2600
Text GLabel 1100 2600 0 50 Input ~ 0
V5_A8
$Comp
L power:GND #PWR01
U 1 1 601AFAF8
P 1800 3950
F 0 "#PWR01" H 1800 3700 50 0001 C CNN
F 1 "GND" H 1805 3777 50 0000 C CNN
F 2 "" H 1800 3950 50 0001 C CNN
F 3 "" H 1800 3950 50 0001 C CNN
1 1800 3950
1 0 0 -1
$EndComp
Wire Wire Line
1800 3950 1800 3800
$Comp
L power:GND #PWR04
U 1 1 601B12E9
P 4950 3550
F 0 "#PWR04" H 4950 3300 50 0001 C CNN
F 1 "GND" H 4955 3377 50 0000 C CNN
F 2 "" H 4950 3550 50 0001 C CNN
F 3 "" H 4950 3550 50 0001 C CNN
1 4950 3550
1 0 0 -1
$EndComp
Wire Wire Line
4950 3550 4950 3400
$Comp
L power:+3.3V #PWR03
U 1 1 601B2BA8
P 4950 1650
F 0 "#PWR03" H 4950 1500 50 0001 C CNN
F 1 "+3.3V" H 4965 1823 50 0000 C CNN
F 2 "" H 4950 1650 50 0001 C CNN
F 3 "" H 4950 1650 50 0001 C CNN
1 4950 1650
1 0 0 -1
$EndComp
Wire Wire Line
4950 1800 4950 1650
Wire Wire Line
1100 3600 1400 3600
Text GLabel 1100 3600 0 50 Input ~ 0
OE_n
Text GLabel 4150 3100 0 50 Input ~ 0
OE_n
Wire Wire Line
4150 3100 4450 3100
Wire Wire Line
4150 2800 4450 2800
Wire Wire Line
4150 2700 4450 2700
Wire Wire Line
4150 2600 4450 2600
Wire Wire Line
4150 2500 4450 2500
Wire Wire Line
4150 2400 4450 2400
Wire Wire Line
4150 2300 4450 2300
Wire Wire Line
4150 2200 4450 2200
Wire Wire Line
4150 2100 4450 2100
$Comp
L 74xx:74LS245 U2
U 1 1 601A9F2F
P 4950 2600
F 0 "U2" H 4500 3450 50 0000 C CNN
F 1 "74LS245" H 4600 3350 50 0000 C CNN
F 2 "Package_SO:SSOP-20_5.3x7.2mm_P0.65mm" H 4950 2600 50 0001 C CNN
F 3 "http://www.ti.com/lit/gpn/sn74LS245" H 4950 2600 50 0001 C CNN
1 4950 2600
1 0 0 -1
$EndComp
$Comp
L power:GND #PWR02
U 1 1 601BD23C
P 3750 3150
F 0 "#PWR02" H 3750 2900 50 0001 C CNN
F 1 "GND" H 3755 2977 50 0000 C CNN
F 2 "" H 3750 3150 50 0001 C CNN
F 3 "" H 3750 3150 50 0001 C CNN
1 3750 3150
1 0 0 -1
$EndComp
Wire Wire Line
3750 3150 3750 3000
Wire Wire Line
4450 3000 3750 3000
$Comp
L power:GND #PWR0101
U 1 1 601CCD89
P 3150 7000
F 0 "#PWR0101" H 3150 6750 50 0001 C CNN
F 1 "GND" H 3155 6827 50 0000 C CNN
F 2 "" H 3150 7000 50 0001 C CNN
F 3 "" H 3150 7000 50 0001 C CNN
1 3150 7000
1 0 0 -1
$EndComp
Wire Wire Line
3150 7000 3150 6850
$Comp
L power:+3.3V #PWR0102
U 1 1 601CCD90
P 3150 5100
F 0 "#PWR0102" H 3150 4950 50 0001 C CNN
F 1 "+3.3V" H 3165 5273 50 0000 C CNN
F 2 "" H 3150 5100 50 0001 C CNN
F 3 "" H 3150 5100 50 0001 C CNN
1 3150 5100
1 0 0 -1
$EndComp
Wire Wire Line
3150 5250 3150 5100
$Comp
L 74xx:74LS245 U4
U 1 1 601CCDA1
P 3150 6050
F 0 "U4" H 2700 6900 50 0000 C CNN
F 1 "74LS245" H 2800 6800 50 0000 C CNN
F 2 "Package_SO:SSOP-20_5.3x7.2mm_P0.65mm" H 3150 6050 50 0001 C CNN
F 3 "http://www.ti.com/lit/gpn/sn74LS245" H 3150 6050 50 0001 C CNN
1 3150 6050
1 0 0 -1
$EndComp
$Comp
L power:GND #PWR0103
U 1 1 601CCDA7
P 1950 6600
F 0 "#PWR0103" H 1950 6350 50 0001 C CNN
F 1 "GND" H 1955 6427 50 0000 C CNN
F 2 "" H 1950 6600 50 0001 C CNN
F 3 "" H 1950 6600 50 0001 C CNN
1 1950 6600
1 0 0 -1
$EndComp
Wire Wire Line
1950 6600 1950 6450
Wire Wire Line
2650 6450 2450 6450
Text GLabel 3950 5550 2 50 Input ~ 0
V5_A5
Wire Wire Line
3950 5550 3650 5550
Wire Wire Line
2450 6550 2650 6550
Wire Wire Line
2450 6550 2450 6450
Connection ~ 2450 6450
Wire Wire Line
2450 6450 1950 6450
$Comp
L power:GND #PWR0104
U 1 1 601FC8DE
P 6400 7000
F 0 "#PWR0104" H 6400 6750 50 0001 C CNN
F 1 "GND" H 6405 6827 50 0000 C CNN
F 2 "" H 6400 7000 50 0001 C CNN
F 3 "" H 6400 7000 50 0001 C CNN
1 6400 7000
1 0 0 -1
$EndComp
Wire Wire Line
6400 7000 6400 6850
$Comp
L power:+3.3V #PWR0105
U 1 1 601FC8E5
P 6400 5100
F 0 "#PWR0105" H 6400 4950 50 0001 C CNN
F 1 "+3.3V" H 6415 5273 50 0000 C CNN
F 2 "" H 6400 5100 50 0001 C CNN
F 3 "" H 6400 5100 50 0001 C CNN
1 6400 5100
1 0 0 -1
$EndComp
Wire Wire Line
6400 5250 6400 5100
$Comp
L 74xx:74LS245 U5
U 1 1 601FC8F4
P 6400 6050
F 0 "U5" H 5950 6900 50 0000 C CNN
F 1 "74LS245" H 6050 6800 50 0000 C CNN
F 2 "Package_SO:SSOP-20_5.3x7.2mm_P0.65mm" H 6400 6050 50 0001 C CNN
F 3 "http://www.ti.com/lit/gpn/sn74LS245" H 6400 6050 50 0001 C CNN
1 6400 6050
1 0 0 -1
$EndComp
$Comp
L power:GND #PWR0106
U 1 1 601FC8FA
P 5200 6600
F 0 "#PWR0106" H 5200 6350 50 0001 C CNN
F 1 "GND" H 5205 6427 50 0000 C CNN
F 2 "" H 5200 6600 50 0001 C CNN
F 3 "" H 5200 6600 50 0001 C CNN
1 5200 6600
1 0 0 -1
$EndComp
Wire Wire Line
5200 6600 5200 6450
Wire Wire Line
5900 6450 5700 6450
Text GLabel 7200 5650 2 50 Input ~ 0
V5_A14
Text GLabel 7200 5850 2 50 Input ~ 0
V5_A13
Wire Wire Line
7200 5850 6900 5850
Wire Wire Line
5700 6550 5900 6550
Wire Wire Line
5700 6550 5700 6450
Connection ~ 5700 6450
Wire Wire Line
5700 6450 5200 6450
Text Notes 750 850 0 50 ~ 0
MicroCore Labs - ROM Emulator\n
Text GLabel 5750 2400 2 50 Input ~ 0
V3_D7
Text GLabel 7450 2700 0 50 Input ~ 0
V3_D0
Wire Wire Line
7450 2700 7750 2700
Text GLabel 7450 2800 0 50 Input ~ 0
V3_D1
Wire Wire Line
7450 2800 7750 2800
Text GLabel 7450 2900 0 50 Input ~ 0
V3_D2
Wire Wire Line
7450 2900 7750 2900
Text GLabel 5750 2800 2 50 Input ~ 0
V3_D3
Text GLabel 5750 2700 2 50 Input ~ 0
V3_D4
Text GLabel 7450 3600 0 50 Input ~ 0
V3_D4
Text GLabel 7450 3500 0 50 Input ~ 0
V3_D3
Text GLabel 7450 3900 0 50 Input ~ 0
V3_D7
Wire Wire Line
7450 3500 7750 3500
Wire Wire Line
7450 3600 7750 3600
Wire Wire Line
7450 3700 7750 3700
Text GLabel 7450 3700 0 50 Input ~ 0
V3_D5
Wire Wire Line
7450 3800 7750 3800
Text GLabel 7450 3800 0 50 Input ~ 0
V3_D6
Wire Wire Line
7450 3900 7750 3900
Text GLabel 7450 2100 0 50 Input ~ 0
V3_A7
Text GLabel 10250 4300 2 50 Input ~ 0
V3_A6
Text GLabel 7450 2400 0 50 Input ~ 0
V3_A4
Wire Wire Line
7450 2100 7750 2100
Wire Wire Line
10250 4300 9950 4300
Wire Wire Line
7450 2400 7750 2400
Wire Wire Line
7200 5550 6900 5550
Text GLabel 7200 5550 2 50 Input ~ 0
V5_A15
Text GLabel 7450 1900 0 50 Input ~ 0
V3_A12
Wire Wire Line
7450 1900 7750 1900
Text GLabel 7450 1800 0 50 Input ~ 0
V3_A14
Wire Wire Line
7450 1800 7750 1800
Text GLabel 7450 2300 0 50 Input ~ 0
V3_A11
Wire Wire Line
7450 2300 7750 2300
$Comp
L power:GND #PWR0107
U 1 1 60270919
P 6850 1700
F 0 "#PWR0107" H 6850 1450 50 0001 C CNN
F 1 "GND" H 6855 1527 50 0000 C CNN
F 2 "" H 6850 1700 50 0001 C CNN
F 3 "" H 6850 1700 50 0001 C CNN
1 6850 1700
1 0 0 -1
$EndComp
$Comp
L power:GND #PWR0108
U 1 1 6027B17F
P 10700 4150
F 0 "#PWR0108" H 10700 3900 50 0001 C CNN
F 1 "GND" H 10705 3977 50 0000 C CNN
F 2 "" H 10700 4150 50 0001 C CNN
F 3 "" H 10700 4150 50 0001 C CNN
1 10700 4150
1 0 0 -1
$EndComp
Text GLabel 7450 2000 0 50 Input ~ 0
V3_A13
Wire Wire Line
7450 2000 7750 2000
$Comp
L power:+3.3V #PWR0109
U 1 1 60290E82
P 10600 4300
F 0 "#PWR0109" H 10600 4150 50 0001 C CNN
F 1 "+3.3V" H 10615 4473 50 0000 C CNN
F 2 "" H 10600 4300 50 0001 C CNN
F 3 "" H 10600 4300 50 0001 C CNN
1 10600 4300
1 0 0 1
$EndComp
Wire Wire Line
9950 4100 10600 4100
Wire Wire Line
10600 4100 10600 4300
NoConn ~ 9950 3900
Wire Wire Line
6850 1600 6850 1700
Wire Wire Line
6850 1600 7750 1600
Wire Wire Line
7450 1700 7750 1700
Text GLabel 7450 1700 0 50 Input ~ 0
V3_A15
$Comp
L teensy:Teensy4.0 U3
U 1 1 601A6865
P 8850 2950
F 0 "U3" H 8850 4565 50 0000 C CNN
F 1 "Teensy4.0" H 8850 4474 50 0000 C CNN
F 2 "Teensy:Teensy40" H 8450 3150 50 0001 C CNN
F 3 "" H 8450 3150 50 0001 C CNN
1 8850 2950
1 0 0 -1
$EndComp
Wire Wire Line
7450 4300 7750 4300
Text GLabel 7450 4300 0 50 Input ~ 0
V3_A9
Wire Wire Line
10250 4200 9950 4200
Text GLabel 10250 4200 2 50 Input ~ 0
V3_A8
Wire Wire Line
7200 5750 6900 5750
Text GLabel 7200 5750 2 50 Input ~ 0
V5_A12
Wire Wire Line
7200 5650 6900 5650
Text GLabel 7200 6050 2 50 Input ~ 0
V5_A8
Text GLabel 7200 6250 2 50 Input ~ 0
V5_A9
Wire Wire Line
7200 6250 6900 6250
Wire Wire Line
7200 5950 6900 5950
Text GLabel 7200 5950 2 50 Input ~ 0
V5_A7
Wire Wire Line
7200 6150 6900 6150
Text GLabel 7200 6150 2 50 Input ~ 0
V5_A6
Wire Wire Line
7200 6050 6900 6050
Text GLabel 5600 5650 0 50 Input ~ 0
V3_A14
Text GLabel 5600 5850 0 50 Input ~ 0
V3_A13
Wire Wire Line
5600 5850 5900 5850
Wire Wire Line
5600 5550 5900 5550
Text GLabel 5600 5550 0 50 Input ~ 0
V3_A15
Wire Wire Line
5600 5750 5900 5750
Text GLabel 5600 5750 0 50 Input ~ 0
V3_A12
Wire Wire Line
5600 5650 5900 5650
Text GLabel 5600 6050 0 50 Input ~ 0
V3_A8
Text GLabel 5600 6250 0 50 Input ~ 0
V3_A9
Wire Wire Line
5600 6250 5900 6250
Wire Wire Line
5600 5950 5900 5950
Text GLabel 5600 5950 0 50 Input ~ 0
V3_A7
Wire Wire Line
5600 6150 5900 6150
Text GLabel 5600 6150 0 50 Input ~ 0
V3_A6
Wire Wire Line
5600 6050 5900 6050
Text GLabel 3950 5650 2 50 Input ~ 0
V5_A11
Wire Wire Line
3950 5650 3650 5650
Text GLabel 3950 5750 2 50 Input ~ 0
V5_A4
Wire Wire Line
3950 5750 3650 5750
Text GLabel 3950 5850 2 50 Input ~ 0
V5_A10
Wire Wire Line
3950 5850 3650 5850
Text GLabel 3950 5950 2 50 Input ~ 0
V5_A3
Wire Wire Line
3950 5950 3650 5950
Text GLabel 3950 6050 2 50 Input ~ 0
V5_A2
Wire Wire Line
3950 6050 3650 6050
Text GLabel 3950 6150 2 50 Input ~ 0
V5_A1
Wire Wire Line
3950 6150 3650 6150
Text GLabel 3950 6250 2 50 Input ~ 0
V5_A0
Wire Wire Line
3950 6250 3650 6250
Text GLabel 2350 5550 0 50 Input ~ 0
V3_A5
Wire Wire Line
2350 5550 2650 5550
Text GLabel 2350 5650 0 50 Input ~ 0
V3_A11
Wire Wire Line
2350 5650 2650 5650
Text GLabel 2350 5750 0 50 Input ~ 0
V3_A4
Wire Wire Line
2350 5750 2650 5750
Text GLabel 2350 5850 0 50 Input ~ 0
V3_A10
Wire Wire Line
2350 5850 2650 5850
Text GLabel 2350 5950 0 50 Input ~ 0
V3_A3
Wire Wire Line
2350 5950 2650 5950
Text GLabel 2350 6050 0 50 Input ~ 0
V3_A2
Wire Wire Line
2350 6050 2650 6050
Text GLabel 2350 6150 0 50 Input ~ 0
V3_A1
Wire Wire Line
2350 6150 2650 6150
Text GLabel 2350 6250 0 50 Input ~ 0
V3_A0
Wire Wire Line
2350 6250 2650 6250
Wire Wire Line
7450 2200 7750 2200
Text GLabel 7450 2200 0 50 Input ~ 0
V3_A5
Wire Wire Line
9950 4000 10700 4000
Wire Wire Line
10700 4150 10700 4000
Text GLabel 7450 2500 0 50 Input ~ 0
V3_A10
Wire Wire Line
7450 2500 7750 2500
Text GLabel 7450 2600 0 50 Input ~ 0
V3_A3
Wire Wire Line
7450 2600 7750 2600
Text GLabel 7450 4000 0 50 Input ~ 0
V3_A0
Wire Wire Line
7450 4000 7750 4000
Text GLabel 7450 4100 0 50 Input ~ 0
V3_A1
Wire Wire Line
7450 4100 7750 4100
Text GLabel 7450 4200 0 50 Input ~ 0
V3_A2
Wire Wire Line
7450 4200 7750 4200
$EndSCHEMATC

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,4 @@
(fp_lib_table
(lib (name Teensy)(type KiCad)(uri Z:/Ted/projs/KiCAD_Library/Teensy)(options "")(descr ""))
(lib (name PCB_MCL65+)(type KiCad)(uri F:/Latest_1_9_2021/MCL65/PCB_MCL65+.pretty)(options "")(descr ""))
)

View File

@ -32,6 +32,7 @@ Misc:
Wheelwriter - FPGA based Printer Option for the IBM Wheelwriter 5
Wheelwriter2 - Arduino Leonardo based Printer Option for the IBM Wheelwriter 5
Brother Typewriter - Arduino Leonardo converts Serial RX to a Brother Word Processor
EPROM Emulator - Small PCB which uses Teensy 4.0 to emulate up a 64KB 27C512 EPROM
For questions email me at www.MicroCoreLabs.com