On 2016-11-27, at 18:14, Charles Mills wrote:

> I have a DSECT where I want to define a fullword such that the next address
> after the fullword will be on a doubleword boundary. I would like the
> alignment to be independent of the preceding alignment (be change-proof).
>  
How about?:
        DS    1F
        DS    0D
        ORG   *-4

> CNOP 4,8 would do exactly what I want, but CNOP seems inappropriate in
> non-executable code. 
>  
OTOH, it's what programmers will be comfortably familiar with.
That weighs heavily in its favor.

-- gil

Reply via email to