Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
6
Task/Empty-program/8086-Assembly/empty-program-1.8086
Normal file
6
Task/Empty-program/8086-Assembly/empty-program-1.8086
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
main segment
|
||||
start:
|
||||
jmp start ;2 bytes
|
||||
padding byte 508 dup (90h)
|
||||
bootcode byte 55h,0AAh
|
||||
main ends
|
||||
7
Task/Empty-program/8086-Assembly/empty-program-2.8086
Normal file
7
Task/Empty-program/8086-Assembly/empty-program-2.8086
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
.model small ;.exe file
|
||||
.stack 1024 ;this value doesn't matter, I chose this arbitrarily
|
||||
.data
|
||||
;not needed in an empty program
|
||||
.code
|
||||
mov ax,4C00h
|
||||
int 21h ;exit this program and return to MS-DOS
|
||||
1
Task/Empty-program/8086-Assembly/empty-program-3.8086
Normal file
1
Task/Empty-program/8086-Assembly/empty-program-3.8086
Normal file
|
|
@ -0,0 +1 @@
|
|||
end
|
||||
8
Task/Empty-program/8086-Assembly/empty-program-4.8086
Normal file
8
Task/Empty-program/8086-Assembly/empty-program-4.8086
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
segment .text
|
||||
global _start
|
||||
|
||||
_start:
|
||||
mov eax, 60
|
||||
xor edi, edi
|
||||
syscall
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue