updated example.asm with format binary as "", so that fasm does not add .bin extension by default.

git-svn-id: svn://kolibrios.org@4664 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
hidnplayr 2014-03-18 20:10:06 +00:00
parent 58ab3adc95
commit 3ee52d84f3

View File

@ -6,12 +6,14 @@
; ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; The header
format binary as "" ; Binary file format without extension
use32 ; Tell compiler to use 32 bit instructions
org 0x0 ; the base address of code, always 0x0
; The header
db 'MENUET01'
dd 0x01
dd START