Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
7
Task/Empty-program/X86-Assembly/empty-program-1.x86
Normal file
7
Task/Empty-program/X86-Assembly/empty-program-1.x86
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
section .text
|
||||
global _start
|
||||
|
||||
_start:
|
||||
mov eax, 1
|
||||
int 0x80
|
||||
ret
|
||||
8
Task/Empty-program/X86-Assembly/empty-program-2.x86
Normal file
8
Task/Empty-program/X86-Assembly/empty-program-2.x86
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
.386
|
||||
.model flat, stdcall
|
||||
option casemap:none
|
||||
|
||||
.code
|
||||
start:
|
||||
ret
|
||||
end start
|
||||
Loading…
Add table
Add a link
Reference in a new issue