Function generateBytecodeMap
- generateBytecodeMap(opcodes: {
[opcode: string]: unknown;
}): {
[opcode: string]: Uint8Array;
}
-
Parameters
-
opcodes: {
[opcode: string]: unknown;
}
-
[opcode: string]: unknown
Returns {
[opcode: string]: Uint8Array;
}
-
[opcode: string]: Uint8Array
Create an object where each key is an opcode identifier and each value is the bytecode value (
Uint8Array
) it represents.