mirror of
https://github.com/yasm/yasm
synced 2026-08-26 22:26:05 -04:00
using for testing various things during development. Many don't even actually assemble, as they're testing error conditions. These all need to be integrated into a test suite at some point to be truly useful. svn path=/trunk/yasm/; revision=336
11 lines
158 B
NASM
11 lines
158 B
NASM
[BITS 16]
|
|
;mov ax,es:[di]
|
|
mov ax,[es:ds:0]
|
|
mov ax,[word dword es:0]
|
|
[BITS 32]
|
|
;mov ax,fs:[di]
|
|
mov ax,[fs:di]
|
|
;mov ax,[gs:edi+eax+ebx]
|
|
mov ,bx
|
|
mov ax,
|
|
[blah]
|