Where can I find a list of official and unofficial Visual Basic 6 specifications that can allow me to, say, fully interpret the contents of a VB6 EXE file and analyze them, or interpret them on my own, instead of using MSVBVM60.DLL?

Something like the specification of the virtual machine and its language.

Things such as opcodes, instructions, mnemonics, whether it uses one or more stacks, stack pointers, registers, etc.

有帮助吗?

解决方案

VB6 can be compiled to p-code or native code.

  • Native code is just native 8086 family machine code. I suppose that's a public standard. It's not very malleable.
  • Here's a link about p-code
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top