The MASM Forum

General => The Workshop => Topic started by: TouEnMasm on May 15, 2021, 03:56:53 AM

Title: typedef syntax
Post by: TouEnMasm on May 15, 2021, 03:56:53 AM
Hello,
I try to write something like  "GAMMA_TABLES typedef  BYTE 256:dup(?) "
Don't seem to be the good syntax,Help!
Title: Re: typedef syntax
Post by: Biterider on May 15, 2021, 04:17:25 AM
Maybe this workaround
??GAMMA_TABLES struct
  repeat 256
    BYTE ?
  endm
??GAMMA_TABLES ends

GAMMA_TABLES typedef ??GAMMA_TABLES


Biterider


Title: Re: typedef syntax
Post by: jj2007 on May 15, 2021, 06:00:14 AM
Why so complicated? Sorry, just curious...
Title: Re: typedef syntax
Post by: hutch-- on May 16, 2021, 06:39:00 PM
I remember some time ago doing a "typedef madness" demo and with much the same comment now, more often than not, typedefs add to confusion at the expense of comprehension, a mindless attempt to drag the clarity of assembler programming into the morass of C compiler clutter.
Title: Re: typedef syntax
Post by: StillLearningMasm on August 25, 2023, 04:21:07 AM
TouEnMasm,

Here are 2 other methods to choose from:

;Method 1 to create an array named GAMMA_TABLES
GAMMA_TABLES BYTE 256 DUP (?)

;Method 2 to create an array named GAMMA_TABLES
GAMMA_TABLE_ARRAY struct
  BYTE 256 dup(?)
GAMMA_TABLE_ARRAY ends
GAMMA_TABLES typedef GAMMA_TABLE_ARRAY