문제

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