/*
Wokwi Custom ROM chip example
contents are set in the attributes in the diagram.json
the ROM outputs the data at the address given by pins A3, A2, A1, A0
A0 is least significant bit
the output in the atributes is stored digit by digit in the order
D7, D6, D5, D4, D3, D2, D1, D0
a quirk with the JSON parser is you cant have leading zeros
so
"data0": 00111111,
"data1": 00000110,
needs to be written as
"data0": 111111,
"data1": 110,
*/
void setup() {}
void loop() {}