Page 2 of 2

Posted: Thu Sep 13, 2007 5:44 am
by Avarok
What does

Code: Select all

00000000000i[APIC?] local apic in  initializing
========================================================================
                        Bochs x86 Emulator 2.3
              Build from CVS snapshot on August 27, 2006
========================================================================
00000000000i[     ] parsing arg 1, C:\Code\OS\delta.bvm
00000000000p[     ] >>PANIC<< cmdline args: directive 'C' not understood
00000000000e[CTRL ] notify called, but no bxevent_callback function is registere
d
00000000000i[SYS  ] Last time is 0
========================================================================
Bochs is exiting with the following message:
[     ] cmdline args: directive 'C' not understood
========================================================================
00000000000i[CPU  ] real mode
00000000000i[CPU  ] CS.d_b = 16 bit
00000000000i[CPU  ] SS.d_b = 16 bit
00000000000i[CPU  ] | EAX=00000000  EBX=00000000  ECX=00000000  EDX=00000000
00000000000i[CPU  ] | ESP=00000000  EBP=00000000  ESI=00000000  EDI=00000000
00000000000i[CPU  ] | IOPL=0 id vip vif ac vm rf nt of df if tf sf zf af pf cf
00000000000i[CPU  ] | SEG selector     base    limit G D
00000000000i[CPU  ] | SEG sltr(index|ti|rpl)     base    limit G D
00000000000i[CPU  ] |  CS:0000( 0000| 0|  0) 00000000 00000000 0 0
00000000000i[CPU  ] |  DS:0000( 0000| 0|  0) 00000000 00000000 0 0
00000000000i[CPU  ] |  SS:0000( 0000| 0|  0) 00000000 00000000 0 0
00000000000i[CPU  ] |  ES:0000( 0000| 0|  0) 00000000 00000000 0 0
00000000000i[CPU  ] |  FS:0000( 0000| 0|  0) 00000000 00000000 0 0
00000000000i[CPU  ] |  GS:0000( 0000| 0|  0) 00000000 00000000 0 0
00000000000i[CPU  ] | EIP=00000000 (00000000)
00000000000i[CPU  ] | CR0=0x00000000 CR1=0 CR2=0x00000000
00000000000i[CPU  ] | CR3=0x00000000 CR4=0x00000000
00000000000i[CPU  ] (instruction unavailable) page not present
00000000000i[CTRL ] quit_sim called with exit code 1

Bochs is exiting. Press ENTER when you're ready to close this window.
This evil message mean? Considering I don't provide any references to "C" whatsoever, and it does this with or without a bochsrc?

Posted: Thu Sep 13, 2007 6:39 am
by JamesM
You're passing the first parameter as 'C:\Code\OS\delta.bvm'

as I've said before in several threads, when you use a unix tool, never ever use backslashes in pathnames

So it should be 'C:/Code/OS/delta.bvm'.

JamesM