6 lines
71 B
Bash
6 lines
71 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
rm -rf MyBoot.bin
|
||
|
|
||
|
nasm -f bin -o MyBoot.bin messages.asm
|