GAS LISTING /tmp/ccu8cToG.s page 1 1 # 1 "/var/www/html/boot/syslinux/dos/memset.S" 1 # 1 ... 0 0 1 /* Must be included first of all */ 2 #ifdef __ASSEMBLY__ 3 .code16 4 #else 2 # memset.S 3 # 4 # Minimal 16-bit memset() implementation 5 # 6 7 .text 8 .code16gcc 9 .globl memset 10 .type memset, @function 11 memset: 12 0000 FC cld 13 0001 57 pushw %di 14 0002 89C7 movw %ax,%di 15 0004 88D0 movb %dl,%al 16 # The third argument is already in %cx 17 0006 F3AA rep ; stosb 18 0008 5F popw %di 19 0009 66C3 retl 20 21 .size memset,.-memset GAS LISTING /tmp/ccu8cToG.s page 2 DEFINED SYMBOLS /var/www/html/boot/syslinux/dos/memset.S:11 .text:0000000000000000 memset NO UNDEFINED SYMBOLS