/* To write a programme into Dick, load the computer in Reasoning Realm, then copy/paste an assembled programme between these 's: */ var prog = ''; /* Then go to the tab you have Reasoning Realm open in and copy/paste this script into the developer console (Ctrl+Shift+K). I've tried that on Firefox, and it works, although I don't know about other browsers. */ prog = prog.split(' ').map(function (x){return parseInt(x, 16)}); for(var i=0;i> bit) & 1 === 1){ putCell(x , y, 5); putCell(x + 1, y, 16); putCell(x + 2, y, 2); putCell(x, y + 1, 3); putCell(x + 1, y + 1, 10); putCell(x + 2, y + 1, 11); } else { putCell(x , y, 11); putCell(x + 1, y, 10); putCell(x + 2, y, 3); putCell(x, y + 1, 2); putCell(x + 1, y + 1, 16); putCell(x + 2, y + 1, 5); } x -= 13; } }