The MASM Forum Archive 2004 to 2012

Project Support Forums => HLA Forum => Topic started by: Marko on February 18, 2011, 03:35:42 PM

Title: declaring a table
Post by: Marko on February 18, 2011, 03:35:42 PM
hi all,
how can I declare something like this in HLA:


looktable BYTE 65 DUP (' ')
             BYTE 'abcdefghijklmnopqrstuvwxyz', 6 DUP (' ')
             BYTE 'abcdefghijklmnopqrstuvwxyz', 133 DUP (' ')




EDIT : it is ok I found the array.lookuptable !!!!
Title: Re: declaring a table
Post by: Marko on February 18, 2011, 11:23:47 PM
Well,
at the end of the day i choosed this solution


static
myTable : byte;@nostorage
d1 : byte[65]:= 65 dup[' '];
  byte "abcdefghijklmnopqrstuvwxyz";
d2 : byte[6]:= 6 dup [' '];
  byte "abcdefghijklmnopqrstuvwxyz";
d3 : byte[133]:= 133 dup [' '];