OpenEEPROM is a small extension for OpenComputers that allows you to add custom EEPROMs easily.
This mod lets you load EEPROMs from the filesystem instead of writing them in-game. Perfect for preconfigured BIOS or bootloaders.
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 nameOpen .eeprom.cfg with a text editor (e.g., Notepad) and add:
name=NameOfEEPROM
This defines how the EEPROM appears in OpenComputers.
Project by @Grahmindol
License: MIT