├── .gitignore ├── Centris650.ROM ├── Classic.ROM ├── Color-Classic.ROM ├── LC-475.ROM ├── LC-II.ROM ├── LC-III.ROM ├── LC.ROM ├── Mac-IIcx.ROM ├── Mac-IIvx.ROM ├── Mac-Plus.ROM ├── Performa-570.ROM ├── Performa-580.ROM ├── Performa-630.ROM ├── Quadra-650.ROM └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Mac Finder 2 | .DS_Store 3 | Icon? 4 | 5 | # Thumbnails 6 | ._* 7 | 8 | # Files that might appear on external disk 9 | .Spotlight-V100 10 | .Trashes 11 | -------------------------------------------------------------------------------- /Centris650.ROM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Macintosh-ROMs/18e1d0a9756f8ae3b9c005a976d292d7cf0a6f14/Centris650.ROM -------------------------------------------------------------------------------- /Classic.ROM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Macintosh-ROMs/18e1d0a9756f8ae3b9c005a976d292d7cf0a6f14/Classic.ROM -------------------------------------------------------------------------------- /Color-Classic.ROM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Macintosh-ROMs/18e1d0a9756f8ae3b9c005a976d292d7cf0a6f14/Color-Classic.ROM -------------------------------------------------------------------------------- /LC-475.ROM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Macintosh-ROMs/18e1d0a9756f8ae3b9c005a976d292d7cf0a6f14/LC-475.ROM -------------------------------------------------------------------------------- /LC-II.ROM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Macintosh-ROMs/18e1d0a9756f8ae3b9c005a976d292d7cf0a6f14/LC-II.ROM -------------------------------------------------------------------------------- /LC-III.ROM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Macintosh-ROMs/18e1d0a9756f8ae3b9c005a976d292d7cf0a6f14/LC-III.ROM -------------------------------------------------------------------------------- /LC.ROM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Macintosh-ROMs/18e1d0a9756f8ae3b9c005a976d292d7cf0a6f14/LC.ROM -------------------------------------------------------------------------------- /Mac-IIcx.ROM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Macintosh-ROMs/18e1d0a9756f8ae3b9c005a976d292d7cf0a6f14/Mac-IIcx.ROM -------------------------------------------------------------------------------- /Mac-IIvx.ROM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Macintosh-ROMs/18e1d0a9756f8ae3b9c005a976d292d7cf0a6f14/Mac-IIvx.ROM -------------------------------------------------------------------------------- /Mac-Plus.ROM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Macintosh-ROMs/18e1d0a9756f8ae3b9c005a976d292d7cf0a6f14/Mac-Plus.ROM -------------------------------------------------------------------------------- /Performa-570.ROM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Macintosh-ROMs/18e1d0a9756f8ae3b9c005a976d292d7cf0a6f14/Performa-570.ROM -------------------------------------------------------------------------------- /Performa-580.ROM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Macintosh-ROMs/18e1d0a9756f8ae3b9c005a976d292d7cf0a6f14/Performa-580.ROM -------------------------------------------------------------------------------- /Performa-630.ROM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Macintosh-ROMs/18e1d0a9756f8ae3b9c005a976d292d7cf0a6f14/Performa-630.ROM -------------------------------------------------------------------------------- /Quadra-650.ROM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Macintosh-ROMs/18e1d0a9756f8ae3b9c005a976d292d7cf0a6f14/Quadra-650.ROM -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Macintosh ROMs 2 | ============== 3 | 4 | [![Issues](http://img.shields.io/github/issues/macmade/Macintosh-ROMs.svg?style=flat)](https://github.com/macmade/Macintosh-ROMs/issues) 5 | ![Status](https://img.shields.io/badge/status-inactive-lightgray.svg?style=flat) 6 | ![License](https://img.shields.io/badge/license-none-lightgray.svg?style=flat) 7 | [![Contact](https://img.shields.io/badge/contact-@macmade-blue.svg?style=flat)](https://twitter.com/macmade) 8 | [![Donate-Patreon](https://img.shields.io/badge/donate-patreon-yellow.svg?style=flat)](https://patreon.com/macmade) 9 | [![Donate-Gratipay](https://img.shields.io/badge/donate-gratipay-yellow.svg?style=flat)](https://www.gratipay.com/macmade) 10 | [![Donate-Paypal](https://img.shields.io/badge/donate-paypal-yellow.svg?style=flat)](https://paypal.me/xslabs) 11 | 12 | About 13 | ----- 14 | 15 | A collection of old world Macintosh ROM files. 16 | 17 | Available ROMs 18 | -------------- 19 | 20 | * Centris 650 21 | * Classic 22 | * Color Classic 23 | * LC 475 24 | * LC II 25 | * LC III 26 | * LC 27 | * Mac IIcx 28 | * Mac IIvx 29 | * Mac Plus 30 | * Performa 570 31 | * Performa 580 32 | * Performa 630 33 | * Quadra 650 34 | 35 | Repository Infos 36 | ---------------- 37 | 38 | Owner: Jean-David Gadina - XS-Labs 39 | Web: www.xs-labs.com 40 | Blog: www.noxeos.com 41 | Twitter: @macmade 42 | GitHub: github.com/macmade 43 | LinkedIn: ch.linkedin.com/in/macmade/ 44 | StackOverflow: stackoverflow.com/users/182676/macmade 45 | --------------------------------------------------------------------------------