.code16
.globl init
init:
      jmp    start
      .ascii "ECON O$ "			/* OEM ID 		*/
      .word  0x0200			/* Bytes Per Sector	*/
      .byte  0x01			/* Sectors Per Cluster	*/
      .word  0x0001			/* Reserved Sectors	*/
      .byte  0x02			/* Total FATs		*/
      .word  0x00E0			/* Max Root Entries	*/
      .word  0x0B40			/* Total Sectors (S)	*/
      .byte  0xF0			/* Media Descriptor	*/
      .word  0x0009			/* Sectors Per Fat	*/
      .word  0x0012			/* Sectors Per Track	*/
      .word  0x0002			/* Number of Heads	*/
      .long  0x00000000			/* Hidden Sectors	*/
      .long  0x00000000			/* Total Sectors (L)	*/
      .byte  0x00			/* Drive Number		*/
      .byte  0x00			/* Flags		*/
      .byte  0x29			/* Signature		*/
      .long  0xFFFFFFFF			/* Volume ID		*/
      .ascii "ECONO$ BOOT"		/* Volume Label		*/
      .ascii "FAT12   "			/* System ID 		*/
start:
     nop
     nop
     nop
     jmp start
