Horje
build iso from assembly code Code Example
build iso from assembly code
nasm -f bin -o file.bin file.asm # build assembly code
dd if=/dev/zero of=file.img bs=1024 count=1440
dd if=file.bin of=file.img seek=0 count=1 conv=notrunc
mkdir iso
cp file.img iso/
genisoimage -quiet -V '...' -input-charset iso8859-1 -o file.iso -b file.img -hide file.img iso/




Whatever

Related
javafx table row selection event Code Example javafx table row selection event Code Example
cardview set padding not working Code Example cardview set padding not working Code Example
ckeditor embed tweet Code Example ckeditor embed tweet Code Example
Eslint throws is assigned a value but never used , webpack module Code Example Eslint throws is assigned a value but never used , webpack module Code Example
Input with File type css override Code Example Input with File type css override Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10