#objdump: -d
#name: TIc80 .align pseudo op
.*: +file format .*tic80.*
Disassembly of section .text:
00000000 :
0: ab 00 00 00.*
4: cd 00 ef 00.*
8: f1 00 00 00.*
c: ee 00 00 00.*
;; Test the .align directive.
.text
;; This should generate 0xAB000000
.byte 0xAB
.align ; Should default to 4 byte alignment
;; This should generate 0xCD00EF00
.byte 0xCD
.align 2 ; Sh
* alignment directives
* .even == .align 1, .even 2 == longword boundary
* .align [size] ; size is number of words (value must be a power of 2)
* NOTE: .even is broken on TI tools, so theirs won't al
#objdump: -d
#name: TIc80 .align pseudo op
.*: +file format .*tic80.*
Disassembly of section .text:
00000000 :
0: ab 00 00 00.*
4: cd 00 ef 00.*
8: f1 00 00 00.*
c: ee 00 00 00.*