XDS remarks
===========

1. Disassembly

  xdasm -l obj\Tst.obj



2. Compiler error

    PROCEDURE ( CARD16, BYTE ): BYTE

  calling:

    push byte
    push dword

  callee:

    mov  eax, dword ptr [ebp+08H]
    and  eax, 00000FFFFH
    ...
    add  eax, dword ptr [ebp+0CH]

  this reads three undefined bytes on stack

  CHAR and CARD8 (instead of BYTE) work fine



