How Can I make a boot Image?
Posted: Tue Aug 15, 2006 10:03 am
I have a lap top computer.
So I don't have any floppy disk driver.
How can I make a boot disk Image for vmware...
my code is very simple...
but I couldn't make an image file for wmware...
But there is an image file... someone makes this...
http://www.pyrasis.com/main/MicroC/OS-I ... yimage.zip
there is an ucos-ii Image file...
so if I use this image file I can boot from this image...
I try to make a image file using WinImage... I don't know if other people
use this program... and what is right...
please tell me how can I make a image file without floppy driver...
please...
So I don't have any floppy disk driver.
How can I make a boot disk Image for vmware...
my code is very simple...
Code: Select all
[org 0]
[bits 16]
jmp 0x07C0:start
mov ax, cs
mov ds, ax
mov ax, 0xB800
mov es, ax
mov di, 0
mov ax, word[msgBack]
mov cx, 0x7FF
paint:
mov word[es:di], ax
add di, 2
dec cx
jnz paint
mov edi, 0
mov byte[es:edi], 'A'
inc edi
mov byte[es:edi], 0x06
inc edi
mov byte[es:edi], 'B'
inc edi
mov byte[es:edi], 0x06
inc edi
mov byte[es:edi], 'C'
inc edi
mov byte[es:edi], 0x06
inc edi
mov byte[es:edi], '1'
inc edi
mov byte[es:edi], 0x06
inc edi
mov byte[es:edi], '2'
inc edi
mov byte[es:edi], 0x06
inc edi
mov byte[es:edi], '3'
inc edi
mov byte[es:edi], 0x06
jmp $
msgBack db '.', 0x67
times 510-($-$$) db 0
dw 0xAA55
but I couldn't make an image file for wmware...
But there is an image file... someone makes this...
http://www.pyrasis.com/main/MicroC/OS-I ... yimage.zip
there is an ucos-ii Image file...
so if I use this image file I can boot from this image...
I try to make a image file using WinImage... I don't know if other people
use this program... and what is right...
please tell me how can I make a image file without floppy driver...
please...