Skip to content

Instantly share code, notes, and snippets.

@kinggoesgaming
Created January 22, 2018 19:00
Show Gist options
  • Save kinggoesgaming/08c16a7567ee6ffcebd18d1b4676ff46 to your computer and use it in GitHub Desktop.
Save kinggoesgaming/08c16a7567ee6ffcebd18d1b4676ff46 to your computer and use it in GitHub Desktop.
.data
.text
.global _start
_start:
movl $0xA4, %eax
add $0x4A, %eax
.data
.text
.global _start
_start:
movl $0xff, %eax
movl $0x42, %ebx
and %ebx, %eax
.data
.text
.global _start
_start:
movl $0xaa, %eax
not %al
.data
.text
.global _start
_start:
movl $0x0f, %eax
movl $0xf0, %ebx
or %ebx, %eax
.data
.text
.global _start
_start:
movl $0x66, %eax
rol $2, %al
.data
.text
.global _start
_start:
movl $0x66, %eax
shr $1, %eax
.data
.text
.global _start
_start:
movl $0xA3, %eax
movl $0x42, %ebx
sub %ebx, %eax
.data
.text
.global _start
_start:
.data
.text
.global _start
_start:
movl $0xfa, %eax
movl $0x9, %ebx
xor %ebx, %eax
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment