To reproduce: 1. Load a BASIC program 2. Modify the program to have an, for example type "x" on a line by itself 3. Reload the page Expected: - Text that you type is uppercase Actual: - Force upper case is disabled Cause: - Uppercase is only installed after successful compilation, in `loadROM`. ``` loadROM(title, data) { … editors.textMapFunctions.input = this.program.opts.uppercaseOnly ? (s) => s.toUpperCase() : null; … } ```