yuv422 / z80editor

Z80 eclipse editor targeting WLA-DX assembler
GNU General Public License v2.0
9 stars 1 forks source link

UNIONS support probably missing #13

Open sverx opened 4 years ago

sverx commented 4 years ago

z80editor doesn't like the following, as it seems not to recognize .UNION keyword at all

.struct player
  .union
    pos_x      dw
  .nextu
    frac_pos_x db
    int_pos_x  db
  .endu
.endst

see this for details on how unions work.