Search found 85 matches
- Mar 04, 2011 2:47
- Forum: Projects
- Topic: x86 PC emulator in pure FreeBASIC
- Replies: 61
- Views: 21035
cool! it was probably putting quotes around the file and path string, which choked it. i should put checks in for that to remove them if necessary. btw, you can run .com files right from the command line as long as they don't use DOS calls on interrupt 21h. do it like this: fake86.exe /com filename....
- Mar 04, 2011 2:30
- Forum: Projects
- Topic: x86 PC emulator in pure FreeBASIC
- Replies: 61
- Views: 21035
- Mar 04, 2011 1:10
- Forum: Projects
- Topic: x86 PC emulator in pure FreeBASIC
- Replies: 61
- Views: 21035
- Mar 03, 2011 23:47
- Forum: Projects
- Topic: x86 PC emulator in pure FreeBASIC
- Replies: 61
- Views: 21035
Is there a download for this available any more? It looks very interesting. I'd like to see how this kind of thing can be done. here's a current snapshot of the code, and it includes a compiled .exe as well as a few ROM files required (for the BIOS and ROM BASIC) there's also a 10 MB hard drive ima...
- Mar 03, 2011 23:14
- Forum: Projects
- Topic: x86 PC emulator in pure FreeBASIC
- Replies: 61
- Views: 21035
- Mar 03, 2011 23:10
- Forum: Projects
- Topic: x86 PC emulator in pure FreeBASIC
- Replies: 61
- Views: 21035
hello mike you are sure DOS 6.22 runs on a 8088 CPU ? does only the himem / EMM part needs a >=286 ? however good job by the way only for fun i'm coding a virtual JAVA CPU Joshy yeah, that's right only HIMEM and EMM won't work on an 8088. everything else there is fine for them. i've actually got al...
- Mar 03, 2011 23:07
- Forum: Projects
- Topic: x86 PC emulator in pure FreeBASIC
- Replies: 61
- Views: 21035
- Mar 02, 2011 23:59
- Forum: Projects
- Topic: x86 PC emulator in pure FreeBASIC
- Replies: 61
- Views: 21035
- Feb 19, 2011 4:30
- Forum: Projects
- Topic: x86 PC emulator in pure FreeBASIC
- Replies: 61
- Views: 21035
"i'll be able to let the BIOS handle the keyboard interrupt after i write the code to emulate the keyboard controller and intel 8255" couldn't you just map that revolving circular loop of memory where keystrokes get stored in DOS? I forget the technical terms, and the fancy details, but you know wh...
- Feb 17, 2011 9:31
- Forum: Projects
- Topic: x86 PC emulator in pure FreeBASIC
- Replies: 61
- Views: 21035
you know, with that "error invalid version of command com" , you might need to factor in what ms-dos version number, that particular flavor of COMMAND.COM expects. If you have the wrong MS-DOS version number being reported back to the program, whether from a BIOS call or whatever, how ever you're h...
- Feb 17, 2011 4:10
- Forum: Projects
- Topic: x86 PC emulator in pure FreeBASIC
- Replies: 61
- Views: 21035
- Feb 17, 2011 4:07
- Forum: Projects
- Topic: x86 PC emulator in pure FreeBASIC
- Replies: 61
- Views: 21035
hey your emu looks pretty good. works well. looking at the code though, it looks like you're just using x86 asm to perform the opcodes? i don't know if that's really emulation, it's more like disassembly and translation. what else you expect me to do? since i'm emulating a x86 over a x86 also i don...
- Feb 16, 2011 2:56
- Forum: Projects
- Topic: x86 PC emulator in pure FreeBASIC
- Replies: 61
- Views: 21035
- Jan 28, 2011 20:11
- Forum: Projects
- Topic: x86 PC emulator in pure FreeBASIC
- Replies: 61
- Views: 21035
- Jan 08, 2011 20:15
- Forum: Projects
- Topic: x86 PC emulator in pure FreeBASIC
- Replies: 61
- Views: 21035
How did you do the screen like that? I thought they didn't have a screen like that.. do you mean the font? that's actually a copy of the fonts used on IBM CGA cards. they're all 8x8 pixels, and the resolution on them in text mode is 640x200. i have the screen scaled to 640x400, so it looks pretty m...