dosbox
-
- Posts: 21
- Joined: Tue Jul 31, 2007 11:23 pm
-
- Posts: 86
- Joined: Thu Aug 17, 2006 3:27 am
Try running it though PSPLink and see if it says "keyboard not found".cloudhunter wrote:Been having trouble with dosbox. Launched it through irshell, and the mount commands that are executed on startup and the IR Keyboard don't work. However, could just be my PSP. It is a little... unusual.
Cloudy
That does look nice. It's license is incompatible with the GPL, I'd have to ask the author but for the moment, other things are higher on the priority list.fMSX v3.3.2 (MSX Emulator for PSP) has a really good keyboard.
Looks to be a subtle problem. I'll spend some time on it when I get a chance.Bluddy wrote:CrazyC, can you check why dos navigator doesn't work with 0.70? I (like many others) use it as my 'gui' to access my games and it hangs on start.
I've put up a binary and patch against 0.71 with slightly buggy audio support. Use the links on the first page to get them.
-
- Posts: 18
- Joined: Thu Apr 12, 2007 1:59 pm
Sweet!!! Nice work CrazyC! Keep it going!!!! I'm at work and can't test. And 0.71!!!! I haven't even dl'd that for my pc! I do want to echo the request that dos navigator is made to work again. That makes the port alot more "user friendly" so to say.
Two Questions if someone will answer: How is the speed compared to the old 0.60 release? and how buggy is the sound compared to the 0.60 release? Thanks again!!!!!!
Two Questions if someone will answer: How is the speed compared to the old 0.60 release? and how buggy is the sound compared to the 0.60 release? Thanks again!!!!!!
-
- Posts: 21
- Joined: Tue Jul 31, 2007 11:23 pm
Well google was how I found dosshell, but that was a year or so ago, and most likely is still lying around on the internet waiting to be GOOGLEd.
EDIT: Dosshell works fine, except for a few graphical glitches.
Is is possible to have keys mapped to the face buttons with a
menu to create custom controls as well as the keyboard? That's
my dream dosbox, because I don't understand p-sprint.
EDIT: Dosshell works fine, except for a few graphical glitches.
Is is possible to have keys mapped to the face buttons with a
menu to create custom controls as well as the keyboard? That's
my dream dosbox, because I don't understand p-sprint.
-
- Posts: 18
- Joined: Sat Aug 04, 2007 8:48 pm
hey just a stupid question
Perhaps this may seem like a stupid question to an actual coder, yet seems fairly logical for a NooB, wouldn't dosbox be a more appropriate firmware than a program. its seems it might free up resources to run dosbox with psp support, than to run psp with dos support, please correct me if I'm wrong and help me to understand why
Also thank you thank you thank you to Crazy, I have not yet installed the new dosbox, but I have read all 10 pages of posts carefully, so it shouldn't be an issue. I think it is amazing that people out there still believe in doing things for the challenge, and for the benefit of everyone. The music industry could learn a serious lesson in this selfless bettering of users. Of course I'm sure if there was serious money in homebrew for psp, it would have its 'popstars' to, but not crazy, and that's back to the point,
CRAZY YOU DO THE COMMUNITY AND THE WORLD A SERVICE KEEP IT UP!
Also thank you thank you thank you to Crazy, I have not yet installed the new dosbox, but I have read all 10 pages of posts carefully, so it shouldn't be an issue. I think it is amazing that people out there still believe in doing things for the challenge, and for the benefit of everyone. The music industry could learn a serious lesson in this selfless bettering of users. Of course I'm sure if there was serious money in homebrew for psp, it would have its 'popstars' to, but not crazy, and that's back to the point,
CRAZY YOU DO THE COMMUNITY AND THE WORLD A SERVICE KEEP IT UP!
This works well, thanks. As a bonus, suspend works now although it's rather flaky. Another thread said that all files are closed and not reopened afterward, but it doesn't seem to be that simple. Anyway, I went a little farther and reset the protection on the ME area at 0x88300000 for an extra megabyte. Seems to work with no ill side effects.J.F. wrote: There's a thread on getting an extra 4M of memory for PSP apps. If I remember correctly, it's whacked by suspending, which is why folks don't tend to use it. However, it seems it would be perfect for the code buffer. Just use the suspend/resume callback to flush the code buffer, then start from clear on recompiling after resuming the app. That should leave more memory for the emulation to devote to the virtual PC.
-
- Posts: 21
- Joined: Tue Jul 31, 2007 11:23 pm
Yes, but win 3.1 won't work for now.IM back! wrote:dosbox 0.71 dose have pageing so dose win 3.1 and os/2 work?
I've put up a new binary and patch that fixes the issues with audio that I know about, fixes dos navigator (as a bonus the mouse works better now as that was the source of the problem), fixes the home button (was an mistake on my part), allows for aspect ratio correction to 4:3 (aspect=true in the config), and uses the extra ram as above, now the system ram can be up to 8MB.
-
- Posts: 18
- Joined: Sat Aug 04, 2007 8:48 pm
can anyone help with some code?
I have been kinda getting used to creating batch files to help with the how hard it can be to type with the short cuts, however I was wondering if anyone could figure out some code for a patch, or maybe even just an executable that would allow me to use up and down to scroll through characters, and the right button to move to the next spot, maybe x to return. I would love to have this ability at the command prompt, as I could use dosbox on the go without having to remember key combinations, yes scrolling through all the characters on longer commands, but it would ease the combo problems
Check if it starts when you put the stick in joystick mode first. If so, your thumbstick must have a lot of drift, try Joysens.IM back! wrote:dos navigator doesn't work in the new version. exiting works.
Map the keys in the config file, then switch to mapped mode at start. Or use a dos shell with mouse support. Unless I'm misunderstanding you.I would love to have this ability at the command prompt,
Let me rephrase this. Win 3.1 works in standard mode, not in enhanced mode.Yes, but win 3.1 won't work for now.
Not surprising. Back when I did PCx for the Amiga, that was a big pain in the butt. Standard mode just requires 16bit protected mode to operate. Enhanced mode requires the mmu, v86, and more. You also need a BIOS capable of handling it. The fake BIOS created with widgets to go to native execution normally aren't written with enchanced mode in mind. You need to make the BIOS more like an actual BIOS. I got PCx to work in enhanced mode initially by using an actual AT BIOS from AMI. I eventually stuck enough x86 code in the fake BIOS to get it working with enchanced mode.crazyc wrote:Let me rephrase this. Win 3.1 works in standard mode, not in enhanced mode.
Well, dosbox does support enhanced mode, it just requires the full 16MB page table that's far to large for the PSP. That said, I do have enhanced mode running, if a bit flaky, with a partial two-level page table. Now for Windows 95 :).J.F. wrote: Not surprising. Back when I did PCx for the Amiga, that was a big pain in the butt. Standard mode just requires 16bit protected mode to operate. Enhanced mode requires the mmu, v86, and more. You also need a BIOS capable of handling it. The fake BIOS created with widgets to go to native execution normally aren't written with enchanced mode in mind. You need to make the BIOS more like an actual BIOS. I got PCx to work in enhanced mode initially by using an actual AT BIOS from AMI. I eventually stuck enough x86 code in the fake BIOS to get it working with enchanced mode.
I see - it's a memory issue with how the original dosbox did the mmu management. I could see where that would be an issue. :) PC programs often love to simply throw memory at the problem. With the amount of memory PCs have these days, why not? That does make conversion to the PSP an issue.crazyc wrote:Well, dosbox does support enhanced mode, it just requires the full 16MB page table that's far to large for the PSP. That said, I do have enhanced mode running, if a bit flaky, with a partial two-level page table. Now for Windows 95 :).J.F. wrote: Not surprising. Back when I did PCx for the Amiga, that was a big pain in the butt. Standard mode just requires 16bit protected mode to operate. Enhanced mode requires the mmu, v86, and more. You also need a BIOS capable of handling it. The fake BIOS created with widgets to go to native execution normally aren't written with enchanced mode in mind. You need to make the BIOS more like an actual BIOS. I got PCx to work in enhanced mode initially by using an actual AT BIOS from AMI. I eventually stuck enough x86 code in the fake BIOS to get it working with enchanced mode.
-
- Posts: 21
- Joined: Tue Jul 31, 2007 11:23 pm
I think you did,crazyc wrote:Map the keys in the config file, then switch to mapped mode at start. Or use a dos shell with mouse support. Unless I'm misunderstanding you.I would love to have this ability at the command prompt,
But on that subject how do you do the key mapping thing, is there a tutorial somewhere?
fourmyfriends: you need to autoexec dosshell or dos navigator with the "dosbox.conf" file.
Example:
[autoexec]
mount c ms0:/dos/
c:
dosshell.exe
http://forums.ps2dev.org/viewtopic.php?p=52519#52519andwhyisit wrote: But on that subject how do you do the key mapping thing, is there a tutorial somewhere?
Can you run it psplink and post the error. Maybe there are problems using scePowerVolatileMemLock.I get a bus error etc, another thing is when i flick the power switch up the numbers change.
-
- Posts: 18
- Joined: Sat Aug 04, 2007 8:48 pm
Wolf3d and raptor working great
thank you so much, I checked out 3d realms website, and they still have the shareware zip files for most of their legacy games, downloaded wolf3d, commander keen, duke nukem 1, and they all seem to work great,
any comments on a scrolling letter chooser, it's not a keyboard, but would be awful convenient for entering dos commands, you know like in old arcade games where you used up and down to change characters, and left right to change the cursor position?
Also any chance of a dosbox firmware? or is that technically ridiculous (I don't code, not sure about the realistic logic of that one)
Any help with either of these issues would be great, thank you
any comments on a scrolling letter chooser, it's not a keyboard, but would be awful convenient for entering dos commands, you know like in old arcade games where you used up and down to change characters, and left right to change the cursor position?
Also any chance of a dosbox firmware? or is that technically ridiculous (I don't code, not sure about the realistic logic of that one)
Any help with either of these issues would be great, thank you