Description
📦 OpenEEPROM
OpenEEPROM is a small extension for OpenComputers that allows you to add custom EEPROMs easily.
🧰 How It Works
This mod lets you load EEPROMs from the filesystem instead of writing them in-game. Perfect for preconfigured BIOS or bootloaders.
📁 Installation & Usage
Inside your Minecraft
mods/folder, create a new folder named:openeepromInside
openeeprom, create another folder called:luaInside
lua, create one folder per EEPROM, using the desired EEPROM's name as the folder name.Example structure:
mods/ └── openeeprom/ └── lua/ └── MyEEPROM/ ├── code.lua └── .eeprom.cfgEach EEPROM folder must contain:
code.lua— the actual Lua code for the EEPROM.eeprom.cfg— a config file that defines the EEPROM's display name
📝 EEPROM Config File
Open .eeprom.cfg with a text editor (e.g., Notepad) and add:
name=NameOfEEPROM
This defines how the EEPROM appears in OpenComputers.
📌 Notes
- You can include multiple EEPROM folders.
- Ideal for custom bootloaders, BIOS, or debug tools.
👤 Author
Project by @Grahmindol
License: MIT

