├── .gitignore ├── LICENSE ├── README.md ├── RECAPPING.md ├── firmware └── README.md ├── hardware ├── 3d_print │ ├── README.md │ └── SCREWS.md ├── README.md ├── fpga │ └── README.md └── pcb │ ├── README.md │ └── mlb │ ├── CPU+FPU.sch │ ├── GLUE+RAM SIMMs.sch │ ├── Macintosh SE30 Main Logic Board-cache.lib │ ├── Macintosh SE30 Main Logic Board-rescue.dcm │ ├── Macintosh SE30 Main Logic Board-rescue.lib │ ├── Macintosh SE30 Main Logic Board.kicad_pcb │ ├── Macintosh SE30 Main Logic Board.pro │ ├── Macintosh SE30 Main Logic Board.sch │ ├── Power Connector + Pullups + Pulldowns.sch │ ├── README.md │ ├── ROM+RAM Muxes.kicad_sch │ ├── SE30 Components Library │ ├── Macintosh_SE_30_Components.bck │ ├── Macintosh_SE_30_Components.dcm │ └── Macintosh_SE_30_Components.lib │ ├── SWIM+SCSI Interface.sch │ ├── Serial Interface + Sound Interface.sch │ ├── Unknown.sch │ ├── VIA1+VIA2+RTC+ADB.sch │ ├── Video Interface.sch │ ├── fp-info-cache │ ├── output │ ├── Individual Pages │ │ ├── Macintosh SE_30 Schematic 01 of 09 CPU FPU.pdf │ │ ├── Macintosh SE_30 Schematic 02 of 09 ROM & RAM Muxes.pdf │ │ ├── Macintosh SE_30 Schematic 03 of 09 GLUE & RAM SIMM's.pdf │ │ ├── Macintosh SE_30 Schematic 04 of 09 VIA, RTC & ADB.pdf │ │ ├── Macintosh SE_30 Schematic 05 of 09 Video Interface.pdf │ │ ├── Macintosh SE_30 Schematic 06 of 09 SWIM & SCSI Interface.pdf │ │ ├── Macintosh SE_30 Schematic 07 of 09 Serial Interface _ Sound Interface.pdf │ │ ├── Macintosh SE_30 Schematic 08 of 09 Power Connector, Pullups _ Pulldowns.pdf │ │ ├── Macintosh SE_30 Schematic 09 of 09 Unknown.pdf │ │ └── Macintosh SE_30 Schematic 10 of 09 Tables.pdf │ ├── Macintosh SE:30 Schematic Redraw of 050-0253-01 JUL-26-2022.pdf │ └── README.md │ └── sym-lib-table └── old_artifacts ├── README.md ├── mlb_stock_photos ├── .gitignore ├── README.md └── get_photos.sh └── se30schems ├── .gitignore ├── README.md └── get_scans.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/README.md -------------------------------------------------------------------------------- /RECAPPING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/RECAPPING.md -------------------------------------------------------------------------------- /firmware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/firmware/README.md -------------------------------------------------------------------------------- /hardware/3d_print/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/hardware/3d_print/README.md -------------------------------------------------------------------------------- /hardware/3d_print/SCREWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/hardware/3d_print/SCREWS.md -------------------------------------------------------------------------------- /hardware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/hardware/README.md -------------------------------------------------------------------------------- /hardware/fpga/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/hardware/fpga/README.md -------------------------------------------------------------------------------- /hardware/pcb/README.md: -------------------------------------------------------------------------------- 1 | # pcb 2 | 3 | This directory contains Printed Circuit Board (PCB) designs. 4 | -------------------------------------------------------------------------------- /hardware/pcb/mlb/CPU+FPU.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/hardware/pcb/mlb/CPU+FPU.sch -------------------------------------------------------------------------------- /hardware/pcb/mlb/GLUE+RAM SIMMs.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/hardware/pcb/mlb/GLUE+RAM SIMMs.sch -------------------------------------------------------------------------------- /hardware/pcb/mlb/Macintosh SE30 Main Logic Board-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/hardware/pcb/mlb/Macintosh SE30 Main Logic Board-cache.lib -------------------------------------------------------------------------------- /hardware/pcb/mlb/Macintosh SE30 Main Logic Board-rescue.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /hardware/pcb/mlb/Macintosh SE30 Main Logic Board-rescue.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/hardware/pcb/mlb/Macintosh SE30 Main Logic Board-rescue.lib -------------------------------------------------------------------------------- /hardware/pcb/mlb/Macintosh SE30 Main Logic Board.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/hardware/pcb/mlb/Macintosh SE30 Main Logic Board.kicad_pcb -------------------------------------------------------------------------------- /hardware/pcb/mlb/Macintosh SE30 Main Logic Board.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/hardware/pcb/mlb/Macintosh SE30 Main Logic Board.pro -------------------------------------------------------------------------------- /hardware/pcb/mlb/Macintosh SE30 Main Logic Board.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/hardware/pcb/mlb/Macintosh SE30 Main Logic Board.sch -------------------------------------------------------------------------------- /hardware/pcb/mlb/Power Connector + Pullups + Pulldowns.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/hardware/pcb/mlb/Power Connector + Pullups + Pulldowns.sch -------------------------------------------------------------------------------- /hardware/pcb/mlb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/hardware/pcb/mlb/README.md -------------------------------------------------------------------------------- /hardware/pcb/mlb/ROM+RAM Muxes.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/hardware/pcb/mlb/ROM+RAM Muxes.kicad_sch -------------------------------------------------------------------------------- /hardware/pcb/mlb/SE30 Components Library/Macintosh_SE_30_Components.bck: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /hardware/pcb/mlb/SE30 Components Library/Macintosh_SE_30_Components.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /hardware/pcb/mlb/SE30 Components Library/Macintosh_SE_30_Components.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/hardware/pcb/mlb/SE30 Components Library/Macintosh_SE_30_Components.lib -------------------------------------------------------------------------------- /hardware/pcb/mlb/SWIM+SCSI Interface.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/hardware/pcb/mlb/SWIM+SCSI Interface.sch -------------------------------------------------------------------------------- /hardware/pcb/mlb/Serial Interface + Sound Interface.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/hardware/pcb/mlb/Serial Interface + Sound Interface.sch -------------------------------------------------------------------------------- /hardware/pcb/mlb/Unknown.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/hardware/pcb/mlb/Unknown.sch -------------------------------------------------------------------------------- /hardware/pcb/mlb/VIA1+VIA2+RTC+ADB.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/hardware/pcb/mlb/VIA1+VIA2+RTC+ADB.sch -------------------------------------------------------------------------------- /hardware/pcb/mlb/Video Interface.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/hardware/pcb/mlb/Video Interface.sch -------------------------------------------------------------------------------- /hardware/pcb/mlb/fp-info-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/hardware/pcb/mlb/fp-info-cache -------------------------------------------------------------------------------- /hardware/pcb/mlb/output/Individual Pages/Macintosh SE_30 Schematic 01 of 09 CPU FPU.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/hardware/pcb/mlb/output/Individual Pages/Macintosh SE_30 Schematic 01 of 09 CPU FPU.pdf -------------------------------------------------------------------------------- /hardware/pcb/mlb/output/Individual Pages/Macintosh SE_30 Schematic 02 of 09 ROM & RAM Muxes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/hardware/pcb/mlb/output/Individual Pages/Macintosh SE_30 Schematic 02 of 09 ROM & RAM Muxes.pdf -------------------------------------------------------------------------------- /hardware/pcb/mlb/output/Individual Pages/Macintosh SE_30 Schematic 03 of 09 GLUE & RAM SIMM's.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/hardware/pcb/mlb/output/Individual Pages/Macintosh SE_30 Schematic 03 of 09 GLUE & RAM SIMM's.pdf -------------------------------------------------------------------------------- /hardware/pcb/mlb/output/Individual Pages/Macintosh SE_30 Schematic 04 of 09 VIA, RTC & ADB.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/hardware/pcb/mlb/output/Individual Pages/Macintosh SE_30 Schematic 04 of 09 VIA, RTC & ADB.pdf -------------------------------------------------------------------------------- /hardware/pcb/mlb/output/Individual Pages/Macintosh SE_30 Schematic 05 of 09 Video Interface.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/hardware/pcb/mlb/output/Individual Pages/Macintosh SE_30 Schematic 05 of 09 Video Interface.pdf -------------------------------------------------------------------------------- /hardware/pcb/mlb/output/Individual Pages/Macintosh SE_30 Schematic 06 of 09 SWIM & SCSI Interface.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/hardware/pcb/mlb/output/Individual Pages/Macintosh SE_30 Schematic 06 of 09 SWIM & SCSI Interface.pdf -------------------------------------------------------------------------------- /hardware/pcb/mlb/output/Individual Pages/Macintosh SE_30 Schematic 07 of 09 Serial Interface _ Sound Interface.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/hardware/pcb/mlb/output/Individual Pages/Macintosh SE_30 Schematic 07 of 09 Serial Interface _ Sound Interface.pdf -------------------------------------------------------------------------------- /hardware/pcb/mlb/output/Individual Pages/Macintosh SE_30 Schematic 08 of 09 Power Connector, Pullups _ Pulldowns.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/hardware/pcb/mlb/output/Individual Pages/Macintosh SE_30 Schematic 08 of 09 Power Connector, Pullups _ Pulldowns.pdf -------------------------------------------------------------------------------- /hardware/pcb/mlb/output/Individual Pages/Macintosh SE_30 Schematic 09 of 09 Unknown.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/hardware/pcb/mlb/output/Individual Pages/Macintosh SE_30 Schematic 09 of 09 Unknown.pdf -------------------------------------------------------------------------------- /hardware/pcb/mlb/output/Individual Pages/Macintosh SE_30 Schematic 10 of 09 Tables.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/hardware/pcb/mlb/output/Individual Pages/Macintosh SE_30 Schematic 10 of 09 Tables.pdf -------------------------------------------------------------------------------- /hardware/pcb/mlb/output/Macintosh SE:30 Schematic Redraw of 050-0253-01 JUL-26-2022.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/hardware/pcb/mlb/output/Macintosh SE:30 Schematic Redraw of 050-0253-01 JUL-26-2022.pdf -------------------------------------------------------------------------------- /hardware/pcb/mlb/output/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/hardware/pcb/mlb/output/README.md -------------------------------------------------------------------------------- /hardware/pcb/mlb/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/hardware/pcb/mlb/sym-lib-table -------------------------------------------------------------------------------- /old_artifacts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/old_artifacts/README.md -------------------------------------------------------------------------------- /old_artifacts/mlb_stock_photos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/old_artifacts/mlb_stock_photos/.gitignore -------------------------------------------------------------------------------- /old_artifacts/mlb_stock_photos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/old_artifacts/mlb_stock_photos/README.md -------------------------------------------------------------------------------- /old_artifacts/mlb_stock_photos/get_photos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/old_artifacts/mlb_stock_photos/get_photos.sh -------------------------------------------------------------------------------- /old_artifacts/se30schems/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/old_artifacts/se30schems/.gitignore -------------------------------------------------------------------------------- /old_artifacts/se30schems/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/old_artifacts/se30schems/README.md -------------------------------------------------------------------------------- /old_artifacts/se30schems/get_scans.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishimasensei/macse30mlb/HEAD/old_artifacts/se30schems/get_scans.sh --------------------------------------------------------------------------------