beaengine icon indicating copy to clipboard operation
beaengine copied to clipboard

BeaEngineDelphi64 header isssues

Open EricGrange opened this issue 4 years ago • 0 comments

Hi, there are a couple issues with the BeaEngineDelphi64 header

  • TREGISTERTYPE declares a "type" field but that is a reserved keyword, it should be renamed or prefixed with '&' as an escape

  • ESReg, DSReg, etc. use C '0x' prefix, while it should be '$'

    ESReg = $1;
    DSReg = $2;
    FSReg = $4;
    GSReg = $8;
    CSReg = $10;
    SSReg = $20;
    

EricGrange avatar Dec 31 '20 07:12 EricGrange