metasm.rb in metasm-1.0.3 vs metasm.rb in metasm-1.0.4

- old
+ new

@@ -34,12 +34,13 @@ # files to require to get the definition of those constants Const_autorequire = { 'Ia32' => 'cpu/ia32', 'MIPS' => 'cpu/mips', 'PowerPC' => 'cpu/ppc', 'ARM' => 'cpu/arm', 'X86_64' => 'cpu/x86_64', 'Sh4' => 'cpu/sh4', 'Dalvik' => 'cpu/dalvik', 'ARC' => 'cpu/arc', - 'Python' => 'cpu/python', 'Z80' => 'cpu/z80', 'CY16' => 'cpu/cy16', 'BPF' => 'cpu/bpf', + 'Python' => 'cpu/python', 'Z80' => 'cpu/z80', 'CY16' => 'cpu/cy16', 'BPF' => 'cpu/bpf', 'EBPF' => 'cpu/ebpf', 'MSP430' => 'cpu/msp430', 'ARM64' => 'cpu/arm64', 'ST20' => 'cpu/st20', 'MCS51' => 'cpu/mcs51', + 'OpenRisc' => 'cpu/openrisc', 'WebAsm' => 'cpu/webasm', 'C' => 'compile_c', 'MZ' => 'exe_format/mz', 'PE' => 'exe_format/pe', 'ELF' => 'exe_format/elf', 'COFF' => 'exe_format/coff', 'Shellcode' => 'exe_format/shellcode', 'AutoExe' => 'exe_format/autoexe', 'AOut' => 'exe_format/a_out', 'MachO' => 'exe_format/macho', @@ -47,16 +48,18 @@ 'NDS' => 'exe_format/nds', 'XCoff' => 'exe_format/xcoff', 'GameBoyRom' => 'exe_format/gb', 'Bflt' => 'exe_format/bflt', 'Dol' => 'exe_format/dol', 'PYC' => 'exe_format/pyc', 'JavaClass' => 'exe_format/javaclass', 'SWF' => 'exe_format/swf', 'ZIP' => 'exe_format/zip', + 'WasmFile' => 'exe_format/wasm', 'Shellcode_RWX' => 'exe_format/shellcode_rwx', 'Gui' => 'gui', 'WindowsExports' => 'os/windows_exports', 'GNUExports' => 'os/gnu_exports', 'Debugger' => 'debug', 'LinOS' => 'os/linux', 'WinOS' => 'os/windows', 'GdbClient' => 'os/gdbremote', + 'EmuDebugger' => 'os/emulator', 'Disassembler' => 'disassemble', 'Decompiler' => 'decompile', 'DynLdr' => 'dynldr', }