View Full Version : PUAE 2.1.0 (amiga emulator for *nix systems)
GnoStiC
13 May 2010, 08:56
PUAE 2.1.0
http://github.com/GnoStiC/PUAE
________
vaporizer pipe (http://vaporizers.net/vapor-genie)
Hungry Horace
13 May 2010, 09:26
very nice. great stuff gnostic. :) If anyone cares to post some compiles, i'll be happy to host them all in one location.
It would be nice to have a 'full set' of binaries equal to those hosted for the last e-uae version. :)
Mac build in the zone now.
I had two problems building.
1. The linker couldn't find _tfopen used in misc.c. I just #defined _tfopen to fopen and it seemed to work.
2. The linker couldn't find the implementation of save_cd. Not really sure what is going on here. The function is defined in blkdev.c but this file doesn't seem to be getting compiled and I'm not really sure why. I just commented-out the loop that uses save_cd.. which means that state-saving is almost certainly broken in this binary (edit: or not... see below).
GnoStiC
13 May 2010, 12:25
thanks for the bug reports, both issues are fixed now.
btw, save state is almost certainly NOT broken as it uses iff like format (hunks)
Mac build in the zone now.
I had two problems building.
1. The linker couldn't find _tfopen used in misc.c. I just #defined _tfopen to fopen and it seemed to work.
2. The linker couldn't find the implementation of save_cd. Not really sure what is going on here. The function is defined in blkdev.c but this file doesn't seem to be getting compiled and I'm not really sure why. I just commented-out the loop that uses save_cd.. which means that state-saving is almost certainly broken in this binary.
________
buy easy vape vaporizer (http://vaporizers.net/easy-vape)
Switching from the Mac Topic to this one :great
After compiling, everything goes well but i can't reach the gui with F12 + Enter .. nothing happens ...
gilgamesh
13 May 2010, 23:45
Thank you very much, GnoStiC. :)
btw, save state is almost certainly NOT broken as it uses iff like format (hunks)
Nice.
There seems to be a problem with using the internal "HRTMon" freezer rom.
I can see that the rom is #included in the code, but it doesn't seem to be possible to actually use it because there's nowhere that adds the rom to the romlist so that the hrtmon_load function can find it.
I tried adding the following code at the top of hrtmon_load:
static int run_once = 0;
if (!run_once) {
run_once = 1;
romlist_add(":HRTMon", getromdatabyid(63));
}
I'm fairly sure this isn't the right place to be doing this, but I don't know where else to put it right now.
After that I can get into HRTMon with F12+f, but it doesn't work properly. The cursor flashes quickly and anytime I press a key it appears too many times. For example if I try to type COP I get:
ccccoooopppp
GnoStiC
14 May 2010, 15:35
@foul: ?
@xaind: (in the git)
we now have a target_startup_sequence function that will allow target specific things to be done.
first of them is now scan_roms (is in misc.c for now) which will scan roms (but doesn't at the moment)
you can put romlist_add there to save the day, but i'll fix that and "too fast" hrtmon it asap.
________
herbal vaporizers (http://vaporizer.org/)
Hungry Horace
14 May 2010, 19:20
oh cool. hrtmon :)
i will try and set up a 'binaries home' for p-uae on sunday :)
anyone able to compile it for PPC / PS3-Linux?
also, i need to find out how the (host)analogue-stick->(amiga)mouse mapping is working, as this is near-essential for PS3 usage. had some very strange results on that previously!
This may sound like a stupid question. I am running a Debian based system but have no idea how to download or use git files. Can anyone help pls? I tried the http link to download:
http://github.com/amigrave/PUAE.git
But I get:
That page doesn't exist!
Thanks for any help
http://github.com/amigrave/PUAE
Click on download source on bottom right ^^
GnoStiC
16 May 2010, 19:44
why are trying to get amigrave's fork?
i bet it's old..
for the latest version;
1) apt-get install git-core
2) git clone git://github.com/GnoStiC/PUAE.git
This may sound like a stupid question. I am running a Debian based system but have no idea how to download or use git files. Can anyone help pls? I tried the http link to download:
http://github.com/amigrave/PUAE.git
But I get:
That page doesn't exist!
Thanks for any help
________
RV90 (http://www.cyclechaos.com/wiki/Suzuki_RV90)
Thanks a lot guys. Just trying to compile it now. Getting quite a few errors so this may be a little to advanced for myself. But it is still running through at the moment.
EPIC FAIL for me :(
pes -fno-strength-reduce -DREGPARAM="__attribute__((regparm(3)))" -pthread -g -O2 -g -O2 -MT scsiemul.o -MD -MP -MF .deps/scsiemul.Tpo -c -o scsiemul.o scsiemul.c
scsiemul.c: In function ‘dev_open_2’:
scsiemul.c:238: warning: comparison between signed and unsigned integer expressions
scsiemul.c: At top level:
scsiemul.c:281: warning: no previous prototype for ‘scsiemul_switchscsi’
scsiemul.c: In function ‘scsi_do_disk_change’:
scsiemul.c:336: error: wrong type argument to unary exclamation mark
scsiemul.c: In function ‘command_cd_read’:
scsiemul.c:500: warning: comparison between signed and unsigned integer expressions
scsiemul.c: In function ‘dev_reset’:
scsiemul.c:847: warning: suggest parentheses around assignment used as truth value
make[3]: *** [scsiemul.o] Error 1
make[3]: Leaving directory `/home/voorhees/PUAE/src'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/home/voorhees/PUAE/src'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/home/voorhees/PUAE/src'
make: *** [all-recursive] Error 1
To much for poor little me to understand
GnoStiC
16 May 2010, 20:04
well, i should write this in compiling doc but here is a quick info, you'll also need the following:
apt-get install build-essential
apt-get install automake
apt-get install zlib1g
apt-get install libsdl1.2-dev
apt-get install libgtk2.0-dev
maybe
apt-get install xorg-core
too ?
________
Buell S2 (http://www.cyclechaos.com/wiki/Buell_S2)
Ah I was missing libsdl1.2-dev, thanks. Configured fine. But I hit a block on the make process:
/home/voorhees/PUAE/src/cdtv.c:314: undefined reference to `sys_command_cd_stop'
cdtv.o: In function `pause_audio':
/home/voorhees/PUAE/src/cdtv.c:204: undefined reference to `sys_command_cd_pause'
filesys.o: In function `initialize_mountinfo':
/home/voorhees/PUAE/src/filesys.c:644: undefined reference to `a3000_add_scsi_unit'
/home/voorhees/PUAE/src/filesys.c:650: undefined reference to `a2091_add_scsi_unit'
collect2: ld returned 1 exit status
make[3]: *** [uae] Error 1
make[3]: Leaving directory `/home/voorhees/PUAE/src'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/home/voorhees/PUAE/src'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/home/voorhees/PUAE/src'
make: *** [all-recursive] Error 1
GnoStiC
16 May 2010, 20:17
i don't know your configure parameters but you're surely missing --enable-scsi-device
you'd better try bronx_.sh (root folder) script and work your way around.
Ah I was missing libsdl1.2-dev, thanks. Configured fine. But I hit a block on the make process:
/home/voorhees/PUAE/src/cdtv.c:314: undefined reference to `sys_command_cd_stop'
cdtv.o: In function `pause_audio':
/home/voorhees/PUAE/src/cdtv.c:204: undefined reference to `sys_command_cd_pause'
filesys.o: In function `initialize_mountinfo':
/home/voorhees/PUAE/src/filesys.c:644: undefined reference to `a3000_add_scsi_unit'
/home/voorhees/PUAE/src/filesys.c:650: undefined reference to `a2091_add_scsi_unit'
collect2: ld returned 1 exit status
make[3]: *** [uae] Error 1
make[3]: Leaving directory `/home/voorhees/PUAE/src'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/home/voorhees/PUAE/src'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/home/voorhees/PUAE/src'
make: *** [all-recursive] Error 1
________
Honda GL1100A (http://www.cyclechaos.com/wiki/Honda_GL1100A)
I got it working. Thanks for your time and help. Now for a little play. It complains about no rom (for me anyway) when first started and wouldnt let me select one. had to manual add it to the config file and then start it up.
why i have no GUI when i launch PUAE ?
gilgamesh
16 May 2010, 21:11
You need GTK2 development dependencies. Have a look at config.log.
effectively some libs was missing ... thank you ;)
Hungry Horace
17 May 2010, 00:21
still having problems with folder-HDs :/
and me with speed .. with cpu=max .. i obtain 2x A1200 speed !! (900x under Winuae)
lostfriend
17 May 2010, 07:25
when I try to start i get a segfault.
Machine is a p4 with ubuntu 10.4
lost@Alien:~/src/GnoStiC-PUAE-c566c09/src$ ./uae
------------------------------------------------------------------------------------
P-UAE 2.1.0
Build date: May 17 2010 07:19:30
------------------------------------------------------------------------------------
Copyright 1995-2002 Bernd Schmidt
1999-2010 Toni Wilen
2003-2007 Richard Drummond
2006-2010 Mustafa Tufan
See the source for a full list of contributors.
This is free software; see the file COPYING for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
------------------------------------------------------------------------------------
Found 0 joystick(s)
X11GFX: Raw key-mapping disabled.
X11GFX: Initialized.
Max Z3FastRAM 1536M. Total physical RAM 2013 0M
X11GFX: Raw key-mapping disabled.
Opening cfgfile '/home/rupertt/.uaerc': okay.
Testing the RDTSC instruction ... done.
TSC frequency: 2812.500000 MHz
X11GFX: Raw key-mapping disabled.
Thread 'GTK-GUI' started (208454200)
NATMEM: Our special area: 0x0x3dfe000-0x0x4dfe000 (01000000 16M)
Segmentation fault
whats wrong here?
GnoStiC
17 May 2010, 07:49
1) remove /home/rupertt/.uaerc and try again
2) if step1 doesn't work;
a) gdb ./uae
b) --segfault--
c) bt
the output will hopefully tell us what's going on.
when I try to start i get a segfault.
Machine is a p4 with ubuntu 10.4
whats wrong here?
________
herbalaire reviews (http://vaporizers.net/herbalaire-vaporizer)
lostfriend
17 May 2010, 17:33
hope this helps
(gdb) run
Starting program: /home/rupertt/src/GnoStiC-PUAE-c566c09/src/uae
[Thread debugging using libthread_db enabled]
------------------------------------------------------------------------------------
P-UAE 2.1.0
Build date: May 17 2010 07:19:30
------------------------------------------------------------------------------------
Copyright 1995-2002 Bernd Schmidt
1999-2010 Toni Wilen
2003-2007 Richard Drummond
2006-2010 Mustafa Tufan
See the source for a full list of contributors.
This is free software; see the file COPYING for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
------------------------------------------------------------------------------------
[New Thread 0x19b5b70 (LWP 12593)]
Found 0 joystick(s)
X11GFX: Raw key-mapping disabled.
X11GFX: Initialized.
Max Z3FastRAM 1536M. Total physical RAM 2013 0M
X11GFX: Raw key-mapping disabled.
Opening cfgfile '/root/.uaerc': failed
failed to load config '/root/.uaerc'
X11GFX: Raw key-mapping disabled.
Opening cfgfile '.uaerc': failed
Testing the RDTSC instruction ... done.
TSC frequency: 2812.500000 MHz
[New Thread 0x61b7b70 (LWP 12594)]
[Thread 0x61b7b70 (LWP 12594) exited]
[New Thread 0x61b7b70 (LWP 12596)]
X11GFX: Raw key-mapping disabled.
[Thread 0x61b7b70 (LWP 12596) exited]
[New Thread 0x61b7b70 (LWP 12597)]
Thread 'GTK-GUI' started (180429304)
NATMEM: Our special area: 0x0x1bec000-0x0x2bec000 (01000000 16M)
Program received signal SIGSEGV, Segmentation fault.
0x00be27ff in ?? () from /lib/tls/i686/cmov/libc.so.6
(gdb) bt
#0 0x00be27ff in ?? () from /lib/tls/i686/cmov/libc.so.6
#1 0x00be24a5 in strdup () from /lib/tls/i686/cmov/libc.so.6
#2 0x080a673e in matchdevices (inf=0x991de70, uid=<value optimized out>) at inputdevice.c:3281
#3 0x080a8be8 in matchdevices_all (prefs=0x86f2200, domerge=<value optimized out>) at inputdevice.c:3289
#4 inputdevice_updateconfig2 (prefs=0x86f2200, domerge=<value optimized out>) at inputdevice.c:3343
#5 0x0808e5c3 in keybuf_init () at keybuf.c:228
#6 0x0804f56a in real_main2 (argc=1, argv=0xbffff494) at main.c:883
#7 real_main (argc=1, argv=0xbffff494) at main.c:957
#8 0x0804fdb3 in main (argc=1, argv=0xbffff494) at main.c:970
EDIT:
i used your bronx.sh file and now it directly starts and tries to load a rom and disk image.
I guess its now using SDL for the GUI.
Are the GUI any different from each other?
GnoStiC
17 May 2010, 21:12
1) what were your configure parameters? (the one crashes)
2) nope, i've never finished gui-sdl, you're using gui-gtk.
press F12 + Enter for the menu
hope this helps
....
EDIT:
i used your bronx.sh file and now it directly starts and tries to load a rom and disk image.
I guess its now using SDL for the GUI.
Are the GUI any different from each other?
________
TY250 (http://www.cyclechaos.com/wiki/Yamaha_TY250)
foul@Foulnux:/usr/local/bin$ gdb ./uae
GNU gdb (GDB) 7.1-ubuntu
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law. Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu".
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>...
Reading symbols from /usr/local/bin/uae...done.
(gdb) run
Starting program: /usr/local/bin/uae
[Thread debugging using libthread_db enabled]
------------------------------------------------------------------------------------
P-UAE 2.1.0
Build date: May 17 2010 21:09:44
------------------------------------------------------------------------------------
Copyright 1995-2002 Bernd Schmidt
1999-2010 Toni Wilen
2003-2007 Richard Drummond
2006-2010 Mustafa Tufan
See the source for a full list of contributors.
This is free software; see the file COPYING for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
------------------------------------------------------------------------------------
[New Thread 0x7fffee9d6710 (LWP 25761)]
Found 3 joystick(s)
Using cooked keymap
SDLGFX: Initialized.
SDLGFX: Using SDL version 1.2.14.
SDLGFX: Display is 32 bits deep.
SDLGFX: Found screenmode: 1680x1050.
SDLGFX: Found screenmode: 1600x1024.
SDLGFX: Found screenmode: 1440x900.
SDLGFX: Found screenmode: 1400x1050.
SDLGFX: Found screenmode: 1360x768.
SDLGFX: Found screenmode: 1280x1024.
SDLGFX: Found screenmode: 1280x960.
SDLGFX: Found screenmode: 1152x864.
SDLGFX: Found screenmode: 1024x768.
SDLGFX: Found screenmode: 960x720.
SDLGFX: Found screenmode: 960x600.
SDLGFX: Found screenmode: 960x540.
SDLGFX: Found screenmode: 928x696.
SDLGFX: Found screenmode: 896x672.
SDLGFX: Found screenmode: 840x525.
SDLGFX: Found screenmode: 832x624.
SDLGFX: Found screenmode: 800x600.
SDLGFX: Found screenmode: 800x512.
SDLGFX: Found screenmode: 720x450.
SDLGFX: Found screenmode: 720x400.
SDLGFX: Found screenmode: 700x525.
SDLGFX: Found screenmode: 680x384.
SDLGFX: Found screenmode: 640x512.
SDLGFX: Found screenmode: 640x480.
SDLGFX: Found screenmode: 640x400.
SDLGFX: Found screenmode: 640x350.
SDLGFX: Found screenmode: 576x432.
SDLGFX: Found screenmode: 512x384.
SDLGFX: Found screenmode: 416x312.
SDLGFX: Found screenmode: 400x300.
SDLGFX: Found screenmode: 360x200.
SDLGFX: Found screenmode: 320x240.
Using cooked keymap
Opening cfgfile '/home/foul/.uaerc': failed
failed to load config '/home/foul/.uaerc'
Using cooked keymap
Opening cfgfile '.uaerc': failed
Testing the RDTSC instruction ... done.
TSC frequency: 2999.500000 MHz
[New Thread 0x7fffed407710 (LWP 25762)]
[Thread 0x7fffed407710 (LWP 25762) exited]
Using cooked keymap
[New Thread 0x7fffed407710 (LWP 25763)]
Thread 'GTK-GUI' started (50946640)
Entered action_replay_load ()
ROM loader..
Failed to open 'kick.rom'
Could not load system ROM, trying system ROM replacement.
ROM loader end
MAP_BANK 00C00000 32 Custom chipset
MAP_BANK 00A00000 32 CIA
MAP_BANK 00D80000 6 (null)
MAP_BANK 00200000 128 (null)
MAP_BANK 00C00000 8 Slow memory
MAP_BANK 00DC0000 1 Battery backed up clock (none)
MAP_BANK 00F80000 8 Kickstart ROM
MAP_BANK 00E80000 1 Autoconfig
MAP_BANK 00000000 32 (null)
MAP_BANK 00000000 32 Chip memory
MAP_BANK 00E00000 8 Kickstart ROM
memory init end
SDLGFX: Added P96 mode: 320x200x32
SDLGFX: Added P96 mode: 320x200x8
SDLGFX: Added P96 mode: 320x240x32
SDLGFX: Added P96 mode: 320x240x8
SDLGFX: Added P96 mode: 320x256x32
SDLGFX: Added P96 mode: 320x256x8
SDLGFX: Added P96 mode: 320x400x32
SDLGFX: Added P96 mode: 320x400x8
SDLGFX: Added P96 mode: 640x350x32
SDLGFX: Added P96 mode: 640x350x8
SDLGFX: Added P96 mode: 640x480x32
SDLGFX: Added P96 mode: 640x480x8
SDLGFX: Added P96 mode: 640x512x32
SDLGFX: Added P96 mode: 640x512x8
SDLGFX: Added P96 mode: 800x600x32
SDLGFX: Added P96 mode: 800x600x8
SDLGFX: Added P96 mode: 1024x768x32
SDLGFX: Added P96 mode: 1024x768x8
SDLGFX: Added P96 mode: 1152x864x32
SDLGFX: Added P96 mode: 1152x864x8
SDLGFX: Added P96 mode: 1280x1024x32
SDLGFX: Added P96 mode: 1280x1024x8
SDLGFX: Added P96 mode: 1680x1050x32
SDLGFX: Added P96 mode: 1680x1050x8
SDLGFX: Added P96 mode: 1600x1024x32
SDLGFX: Added P96 mode: 1600x1024x8
SDLGFX: Added P96 mode: 1440x900x32
SDLGFX: Added P96 mode: 1440x900x8
SDLGFX: Added P96 mode: 1400x1050x32
SDLGFX: Added P96 mode: 1400x1050x8
SDLGFX: Added P96 mode: 1360x768x32
SDLGFX: Added P96 mode: 1360x768x8
SDLGFX: Added P96 mode: 1280x960x32
SDLGFX: Added P96 mode: 1280x960x8
SDLGFX: Added P96 mode: 960x720x32
SDLGFX: Added P96 mode: 960x720x8
SDLGFX: Added P96 mode: 960x600x32
SDLGFX: Added P96 mode: 960x600x8
SDLGFX: Added P96 mode: 960x540x32
SDLGFX: Added P96 mode: 960x540x8
SDLGFX: Added P96 mode: 928x696x32
SDLGFX: Added P96 mode: 928x696x8
SDLGFX: Added P96 mode: 896x672x32
SDLGFX: Added P96 mode: 896x672x8
SDLGFX: Added P96 mode: 840x525x32
SDLGFX: Added P96 mode: 840x525x8
SDLGFX: Added P96 mode: 832x624x32
SDLGFX: Added P96 mode: 832x624x8
SDLGFX: Added P96 mode: 800x512x32
SDLGFX: Added P96 mode: 800x512x8
SDLGFX: Added P96 mode: 720x450x32
SDLGFX: Added P96 mode: 720x450x8
SDLGFX: Added P96 mode: 720x400x32
SDLGFX: Added P96 mode: 720x400x8
SDLGFX: Added P96 mode: 700x525x32
SDLGFX: Added P96 mode: 700x525x8
SDLGFX: Added P96 mode: 680x384x32
SDLGFX: Added P96 mode: 680x384x8
SDLGFX: Added P96 mode: 640x400x32
SDLGFX: Added P96 mode: 640x400x8
SDLGFX: Added P96 mode: 576x432x32
SDLGFX: Added P96 mode: 576x432x8
SDLGFX: Added P96 mode: 512x384x32
SDLGFX: Added P96 mode: 512x384x8
No disk in drive 0.
CPU cycleunit: 256 (0,500)
Building CPU table for configuration: 68000 prefetch 24-bit
1879 CPU functions
Building CPU, 44316 opcodes (0 1 1)
CPU=68000, FPU=0, MMU=0, JIT=CPU=0.
CPU cycleunit: 256 (0,500)
MAP_BANK 00C00000 32 Custom chipset
MAP_BANK 00A00000 32 CIA
MAP_BANK 00D80000 6 (null)
MAP_BANK 00200000 128 (null)
MAP_BANK 00C00000 8 Slow memory
MAP_BANK 00DC0000 1 Battery backed up clock (none)
MAP_BANK 00F80000 8 Kickstart ROM
MAP_BANK 00E80000 1 Autoconfig
MAP_BANK 00000000 32 (null)
MAP_BANK 00000000 32 Chip memory
MAP_BANK 00E00000 8 Kickstart ROM
memory init end
Reset at 00000000
00000000 2048K/4 = 512K Chip memory
00200000 8192K/0 = 8192K <none>
00A00000 2048K/0 = 2048K CIA
00C00000 512K/1 = 512K Slow memory
00C80000 1024K/0 = 1024K Custom chipset
00D80000 256K/0 = 256K <none>
00DC0000 64K/0 = 64K Battery backed up clock (none)
00DD0000 64K/0 = 64K <none>
00DE0000 128K/0 = 128K Custom chipset
00E00000 512K/2 = 256K Kickstart ROM (2045FC36)
00E80000 64K/0 = 64K Autoconfig
00E90000 960K/0 = 960K <none>
00F80000 512K/2 = 256K Kickstart ROM (2045FC36)
MAP_BANK 00E80000 1 (null)
PAL mode V=50Hz H=15600Hz (227x312)
hardreset, memory cleared
initializing kickstart replacement
You need to have a diskfile in DF0 to use the Kickstart replacement!
Unimplemented Kickstart function called
* configuration check trigger
PAL mode V=50Hz H=15600Hz (227x312)
DMACON: 4000 INTENA: 0000 (0000) INTREQ: 0020 (0020) VPOS: 0 HPOS: 0
COP1LC: 00000000, COP2LC: 00000000 COPPTR: 00000000
DIWSTRT: 0000 DIWSTOP: 0000 DDFSTRT: 0000 DDFSTOP: 0000
BPLCON 0: 0000 1: 0000 2: 0000 3: 0c00 4: 0011 LOF=0/0
[Thread 0x7fffee9d6710 (LWP 25761) exited]
*** glibc detected *** /usr/local/bin/uae: free(): invalid pointer: 0x00007fffecb05010 ***
======= Backtrace: =========
/lib/libc.so.6(+0x775b6)[0x7ffff425b5b6]
/lib/libc.so.6(cfree+0x73)[0x7ffff4261e53]
/usr/local/bin/uae[0x41b967]
/usr/local/bin/uae[0x408eff]
/usr/local/bin/uae[0x4097a3]
/usr/local/bin/uae[0x40a0c1]
/lib/libc.so.6(__libc_start_main+0xfd)[0x7ffff4202c4d]
/usr/local/bin/uae[0x408b19]
======= Memory map: ========
00400000-00947000 r-xp 00000000 08:11 3539357 /usr/local/bin/uae
00b46000-00b47000 r--p 00546000 08:11 3539357 /usr/local/bin/uae
00b47000-00b5c000 rw-p 00547000 08:11 3539357 /usr/local/bin/uae
00b5c000-031ea000 rw-p 00000000 00:00 0 [heap]
7fffe8000000-7fffe8021000 rw-p 00000000 00:00 0
7fffe8021000-7fffec000000 ---p 00000000 00:00 0
7fffec3aa000-7fffec52b000 rw-p 00000000 00:00 0
7fffec52b000-7fffec5c3000 r--p 00000000 08:11 3681870 /usr/share/fonts/truetype/ttf-dejavu/DejaVuSans.ttf
7fffec5c3000-7fffec5c5000 r-xp 00000000 08:11 3545363 /usr/lib/pango/1.6.0/modules/pango-basic-fc.so
7fffec5c5000-7fffec7c4000 ---p 00002000 08:11 3545363 /usr/lib/pango/1.6.0/modules/pango-basic-fc.so
7fffec7c4000-7fffec7c5000 r--p 00001000 08:11 3545363 /usr/lib/pango/1.6.0/modules/pango-basic-fc.so
7fffec7c5000-7fffec7c6000 rw-p 00002000 08:11 3545363 /usr/lib/pango/1.6.0/modules/pango-basic-fc.so
7fffec7c6000-7fffec7c7000 r--s 00000000 08:11 7610806 /var/cache/fontconfig/26de28bc8622bbc1fb67fd234c21975f-le64.cache-3
7fffec7c7000-7fffec7c8000 r--s 00000000 08:11 7602258 /var/cache/fontconfig/c05880de57d1f5e948fdfacc138775d9-le64.cache-3
7fffec7c8000-7fffec7d1000 r--s 00000000 08:11 7602253 /var/cache/fontconfig/945677eb7aeaf62f1d50efc3fb3ec7d8-le64.cache-3
7fffec7d1000-7fffec7d3000 r--s 00000000 08:11 7603621 /var/cache/fontconfig/99e8ed0e538f840c565b6ed5dad60d56-le64.cache-3
7fffec7d3000-7fffec7d6000 r--s 00000000 08:11 7602457 /var/cache/fontconfig/e383d7ea5fbe662a33d9b44caf393297-le64.cache-3
7fffec7d6000-7fffec7dc000 r--s 00000000 08:11 7602257 /var/cache/fontconfig/a755afe4a08bf5b97852ceb7400b47bc-le64.cache-3
7fffec7dc000-7fffec7e5000 r--s 00000000 08:11 7602247 /var/cache/fontconfig/6d41288fd70b0be22e8c3a91e032eec0-le64.cache-3
7fffec7e5000-7fffec7f5000 r--s 00000000 08:11 7602234 /var/cache/fontconfig/0f34bcd4b6ee430af32735b75db7f02b-le64.cache-3
7fffec7f5000-7fffec823000 r--s 00000000 08:11 7604196 /var/cache/fontconfig/365b55f210c0a22e9a19e35191240f32-le64.cache-3
7fffec823000-7fffec844000 r--p 00000000 08:11 3711805 /usr/share/locale-langpack/fr/LC_MESSAGES/libc.mo
7fffec844000-7fffec883000 r-xp 00000000 08:11 3412054 /usr/lib/gtk-2.0/2.10.0/engines/libqtcurve.so
7fffec883000-7fffeca82000 ---p 0003f000 08:11 3412054 /usr/lib/gtk-2.0/2.10.0/engines/libqtcurve.so
7fffeca82000-7fffeca83000 r--p 0003e000 08:11 3412054 /usr/lib/gtk-2.0/2.10.0/engines/libqtcurve.so
7fffeca83000-7fffeca84000 rw-p 0003f000 08:11 3412054 /usr/lib/gtk-2.0/2.10.0/engines/libqtcurve.so
7fffeca84000-7fffecc07000 rw-p 00000000 00:00 0
7fffecc07000-7fffecc08000 ---p 00000000 00:00 0
7fffecc08000-7fffed408000 rw-p 00000000 00:00 0
7fffed408000-7fffed41a000 r-xp 00000000 08:11 3408143 /usr/lib/libspeexdsp.so.1.5.0
7fffed41a000-7fffed619000 ---p 00012000 08:11 3408143 /usr/lib/libspeexdsp.so.1.5.0
7fffed619000-7fffed61a000 r--p 00011000 08:11 3408143 /usr/lib/libspeexdsp.so.1.5.0
7fffed61a000-7fffed61b000 rw-p 00012000 08:11 3408143 /usr/lib/libspeexdsp.so.1.5.0
7fffed61b000-7fffed61d000 r-xp 00000000 08:11 3408341 /usr/lib/alsa-lib/libasound_module_rate_speexrate.so
7fffed61d000-7fffed81c000 ---p 00002000 08:11 3408341 /usr/lib/alsa-lib/libasound_module_rate_speexrate.so
7fffed81c000-7fffed81d000 r--p 00001000 08:11 3408341 /usr/lib/alsa-lib/libasound_module_rate_speexrate.so
7fffed81d000-7fffed81e000 rw-p 00002000 08:11 3408341 /usr/lib/alsa-lib/libasound_module_rate_speexrate.so
7fffed81f000-7fffed820000 r--s 00000000 08:11 7602272 /var/cache/fontconfig/e7071f4a29fa870f4323321c154eba04-le64.cache-3
7fffed820000-7fffed824000 r--s 00000000 08:11 7604128 /var/cache/fontconfig/6eb3985aa4124903f6ff08ba781cd364-le64.cache-3
7fffed824000-7fffed825000 r--s 00000000 08:11 7602241 /var/cache/fontconfig/4c73fe0c47614734b17d736dbde7580a-le64.cache-3
7fffed825000-7fffed826000 r--s 00000000 08:11 7602233 /var/cache/fontconfig/0d8c3b2ac0904cb8a57a757ad11a4a08-le64.cache-3
7fffed826000-7fffed827000 r--s 00000000 08:11 7602246 /var/cache/fontconfig/6a53c69dea097a2d716e069445527da8-le64.cache-3
7fffed827000-7fffed82a000 r--s 00000000 08:11 7602265 /var/cache/fontconfig/d60319d88cac85ba9e1a07bd06cfbb8c-le64.cache-3
7fffed82a000-7fffed834000 r--s 00000000 08:11 7602264 /var/cache/fontconfig/d52a8644073d54c13679302ca1180695-le64.cache-3
7fffed834000-7fffed85e000 r--p 00000000 08:11 3706850 /usr/share/locale-langpack/fr/LC_MESSAGES/gtk20-properties.mo
7fffed85e000-7fffed86a000 r-xp 00000000 08:11 7340144 /lib/libnss_files-2.11.1.so
7fffed86a000-7fffeda69000 ---p 0000c000 08:11 7340144 /lib/libnss_files-2.11.1.so
7fffeda69000-7fffeda6a000 r--p 0000b000 08:11 7340144 /lib/libnss_files-2.11.1.so
Program received signal SIGABRT, Aborted.
0x00007ffff4217a75 in raise () from /lib/libc.so.6
(gdb) bt
#0 0x00007ffff4217a75 in raise () from /lib/libc.so.6
#1 0x00007ffff421b5c0 in abort () from /lib/libc.so.6
#2 0x00007ffff42514fb in ?? () from /lib/libc.so.6
#3 0x00007ffff425b5b6 in ?? () from /lib/libc.so.6
#4 0x00007ffff4261e53 in free () from /lib/libc.so.6
#5 0x000000000041b967 in mapped_free () at memory.c:1851
#6 memory_cleanup () at memory.c:2661
#7 0x0000000000408eff in do_leave_program () at main.c:753
#8 0x00000000004097a3 in leave_program (argc=1, argv=0x7fffffffe328) at main.c:765
#9 real_main (argc=1, argv=0x7fffffffe328) at main.c:960
#10 0x000000000040a0c1 in main (argc=1, argv=0x7fffffffe328) at main.c:970
(gdb)
Work well with my uaerc but none without...
GnoStiC
18 May 2010, 07:24
@all:
fetch the latest fixes from github and try again, and report :)
________
Honda CRF250X (http://www.cyclechaos.com/wiki/Honda_CRF250X)
GnoStiC
18 May 2010, 07:27
mail me your .uaerc
still having problems with folder-HDs :/
________
vaporizers (http://vaporizers.net/)
Hungry Horace
18 May 2010, 08:22
@ gnostic - config sent.
@ xaind - did that last build have IPF support switched on? the whole thing seemed to freak out when i tried to put an IPF in the drive :S
New Mac binary in the zone.
@Hungry Horace: IPF is working for me. Can you try the latest build and report?
@GnoStiC: A couple of small and not-so-small things:
1. I notice that show_version_full() is called in main() which doesn't get called in the Mac version. Would there be any problem with moving it to real_main() instead?
2. It looks like the new target_startup_sequence() function is called after hrtmon_load, so if I add a call to romlist_add() in there it will happen too late. Can target_startup_sequence() be moved to an earlier point?
3. If I have 2 HDFs mounted I get a garbled name for the second one. My uaerc looks like this:
sdl.use_gl=true
floppy0sound=-1
cpu_type=68020
chipset=aga
collision_level=playfields
chipmem_size=4
bogomem_size=0
fastmem_size=4
kickstart_rom_file=kick31.rom
hardfile2=rw,DH0:System.hdf,32,1,2,512,-10,
hardfile2=rw,DH1:Test.hdf,32,1,2,512,-10,
I've attached the full log in "log1.txt". The relevant line is this:
FS: mounted HDF unit P]!??䏘i????$
Ꮨi???ܐ (0000-01000000, Test.hdf)
4. If I remove the second "hardfile2=..." line from my uaerc, and replace it with this:
filesystem2=rw,DH1:Stuff:/Users/myname/Other/Amiga/Harddrives/Stuff,-10
I get a crash instead. Log attached in "log2.txt".
GnoStiC
18 May 2010, 10:45
@xaind:
great feedback as usual :)
i'm already working on puae 2.2.0 b1, i'll check your findings as well.
________
CL100 (http://www.cyclechaos.com/wiki/Honda_CL100)
foul@Foulnux:/usr/local/bin$ gdb ./uae
GNU gdb (GDB) 7.1-ubuntu
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law. Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu".
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>...
Reading symbols from /usr/local/bin/uae...done.
(gdb) run
Starting program: /usr/local/bin/uae
[Thread debugging using libthread_db enabled]
------------------------------------------------------------------------------------
P-UAE 2.1.0
Build date: May 18 2010 13:03:27
------------------------------------------------------------------------------------
Copyright 1995-2002 Bernd Schmidt
1999-2010 Toni Wilen
2003-2007 Richard Drummond
2006-2010 Mustafa Tufan
See the source for a full list of contributors.
This is free software; see the file COPYING for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
------------------------------------------------------------------------------------
[New Thread 0x7fffee9d6710 (LWP 11208)]
Found 3 joystick(s)
Using cooked keymap
SDLGFX: Initialized.
SDLGFX: Using SDL version 1.2.14.
SDLGFX: Display is 32 bits deep.
SDLGFX: Found screenmode: 1680x1050.
SDLGFX: Found screenmode: 1600x1024.
SDLGFX: Found screenmode: 1440x900.
SDLGFX: Found screenmode: 1400x1050.
SDLGFX: Found screenmode: 1360x768.
SDLGFX: Found screenmode: 1280x1024.
SDLGFX: Found screenmode: 1280x960.
SDLGFX: Found screenmode: 1152x864.
SDLGFX: Found screenmode: 1024x768.
SDLGFX: Found screenmode: 960x720.
SDLGFX: Found screenmode: 960x600.
SDLGFX: Found screenmode: 960x540.
SDLGFX: Found screenmode: 928x696.
SDLGFX: Found screenmode: 896x672.
SDLGFX: Found screenmode: 840x525.
SDLGFX: Found screenmode: 832x624.
SDLGFX: Found screenmode: 800x600.
SDLGFX: Found screenmode: 800x512.
SDLGFX: Found screenmode: 720x450.
SDLGFX: Found screenmode: 720x400.
SDLGFX: Found screenmode: 700x525.
SDLGFX: Found screenmode: 680x384.
SDLGFX: Found screenmode: 640x512.
SDLGFX: Found screenmode: 640x480.
SDLGFX: Found screenmode: 640x400.
SDLGFX: Found screenmode: 640x350.
SDLGFX: Found screenmode: 576x432.
SDLGFX: Found screenmode: 512x384.
SDLGFX: Found screenmode: 416x312.
SDLGFX: Found screenmode: 400x300.
SDLGFX: Found screenmode: 360x200.
SDLGFX: Found screenmode: 320x240.
Using cooked keymap
Opening cfgfile '/home/foul/.uaerc': failed
failed to load config '/home/foul/.uaerc'
Using cooked keymap
Opening cfgfile '.uaerc': failed
Testing the RDTSC instruction ... done.
TSC frequency: 2999.500000 MHz
[New Thread 0x7fffed407710 (LWP 11209)]
[Thread 0x7fffed407710 (LWP 11209) exited]
Using cooked keymap
[New Thread 0x7fffed407710 (LWP 11210)]
Thread 'GTK-GUI' started (50946640)
Entered action_replay_load ()
ROM loader..
Failed to open 'kick.rom'
Could not load system ROM, trying system ROM replacement.
ROM loader end
MAP_BANK 00C00000 32 Custom chipset
MAP_BANK 00A00000 32 CIA
MAP_BANK 00D80000 6 (null)
MAP_BANK 00200000 128 (null)
MAP_BANK 00C00000 8 Slow memory
MAP_BANK 00DC0000 1 Battery backed up clock (none)
MAP_BANK 00F80000 8 Kickstart ROM
MAP_BANK 00E80000 1 Autoconfig
MAP_BANK 00000000 32 (null)
MAP_BANK 00000000 32 Chip memory
MAP_BANK 00E00000 8 Kickstart ROM
memory init end
SDLGFX: Added P96 mode: 320x200x32
SDLGFX: Added P96 mode: 320x200x8
SDLGFX: Added P96 mode: 320x240x32
SDLGFX: Added P96 mode: 320x240x8
SDLGFX: Added P96 mode: 320x256x32
SDLGFX: Added P96 mode: 320x256x8
SDLGFX: Added P96 mode: 320x400x32
SDLGFX: Added P96 mode: 320x400x8
SDLGFX: Added P96 mode: 640x350x32
SDLGFX: Added P96 mode: 640x350x8
SDLGFX: Added P96 mode: 640x480x32
SDLGFX: Added P96 mode: 640x480x8
SDLGFX: Added P96 mode: 640x512x32
SDLGFX: Added P96 mode: 640x512x8
SDLGFX: Added P96 mode: 800x600x32
SDLGFX: Added P96 mode: 800x600x8
SDLGFX: Added P96 mode: 1024x768x32
SDLGFX: Added P96 mode: 1024x768x8
SDLGFX: Added P96 mode: 1152x864x32
SDLGFX: Added P96 mode: 1152x864x8
SDLGFX: Added P96 mode: 1280x1024x32
SDLGFX: Added P96 mode: 1280x1024x8
SDLGFX: Added P96 mode: 1680x1050x32
SDLGFX: Added P96 mode: 1680x1050x8
SDLGFX: Added P96 mode: 1600x1024x32
SDLGFX: Added P96 mode: 1600x1024x8
SDLGFX: Added P96 mode: 1440x900x32
SDLGFX: Added P96 mode: 1440x900x8
SDLGFX: Added P96 mode: 1400x1050x32
SDLGFX: Added P96 mode: 1400x1050x8
SDLGFX: Added P96 mode: 1360x768x32
SDLGFX: Added P96 mode: 1360x768x8
SDLGFX: Added P96 mode: 1280x960x32
SDLGFX: Added P96 mode: 1280x960x8
SDLGFX: Added P96 mode: 960x720x32
SDLGFX: Added P96 mode: 960x720x8
SDLGFX: Added P96 mode: 960x600x32
SDLGFX: Added P96 mode: 960x600x8
SDLGFX: Added P96 mode: 960x540x32
SDLGFX: Added P96 mode: 960x540x8
SDLGFX: Added P96 mode: 928x696x32
SDLGFX: Added P96 mode: 928x696x8
SDLGFX: Added P96 mode: 896x672x32
SDLGFX: Added P96 mode: 896x672x8
SDLGFX: Added P96 mode: 840x525x32
SDLGFX: Added P96 mode: 840x525x8
SDLGFX: Added P96 mode: 832x624x32
SDLGFX: Added P96 mode: 832x624x8
SDLGFX: Added P96 mode: 800x512x32
SDLGFX: Added P96 mode: 800x512x8
SDLGFX: Added P96 mode: 720x450x32
SDLGFX: Added P96 mode: 720x450x8
SDLGFX: Added P96 mode: 720x400x32
SDLGFX: Added P96 mode: 720x400x8
SDLGFX: Added P96 mode: 700x525x32
SDLGFX: Added P96 mode: 700x525x8
SDLGFX: Added P96 mode: 680x384x32
SDLGFX: Added P96 mode: 680x384x8
SDLGFX: Added P96 mode: 640x400x32
SDLGFX: Added P96 mode: 640x400x8
SDLGFX: Added P96 mode: 576x432x32
SDLGFX: Added P96 mode: 576x432x8
SDLGFX: Added P96 mode: 512x384x32
SDLGFX: Added P96 mode: 512x384x8
No disk in drive 0.
CPU cycleunit: 256 (0,500)
Building CPU table for configuration: 68000 prefetch 24-bit
1879 CPU functions
Building CPU, 44316 opcodes (0 1 1)
CPU=68000, FPU=0, MMU=0, JIT=CPU=0.
CPU cycleunit: 256 (0,500)
MAP_BANK 00C00000 32 Custom chipset
MAP_BANK 00A00000 32 CIA
MAP_BANK 00D80000 6 (null)
MAP_BANK 00200000 128 (null)
MAP_BANK 00C00000 8 Slow memory
MAP_BANK 00DC0000 1 Battery backed up clock (none)
MAP_BANK 00F80000 8 Kickstart ROM
MAP_BANK 00E80000 1 Autoconfig
MAP_BANK 00000000 32 (null)
MAP_BANK 00000000 32 Chip memory
MAP_BANK 00E00000 8 Kickstart ROM
memory init end
Reset at 00000000
00000000 2048K/4 = 512K Chip memory
00200000 8192K/0 = 8192K <none>
00A00000 2048K/0 = 2048K CIA
00C00000 512K/1 = 512K Slow memory
00C80000 1024K/0 = 1024K Custom chipset
00D80000 256K/0 = 256K <none>
00DC0000 64K/0 = 64K Battery backed up clock (none)
00DD0000 64K/0 = 64K <none>
00DE0000 128K/0 = 128K Custom chipset
00E00000 512K/2 = 256K Kickstart ROM (2045FC36)
00E80000 64K/0 = 64K Autoconfig
00E90000 960K/0 = 960K <none>
00F80000 512K/2 = 256K Kickstart ROM (2045FC36)
MAP_BANK 00E80000 1 (null)
PAL mode V=50Hz H=15600Hz (227x312)
hardreset, memory cleared
initializing kickstart replacement
You need to have a diskfile in DF0 to use the Kickstart replacement!
Unimplemented Kickstart function called
* configuration check trigger
PAL mode V=50Hz H=15600Hz (227x312)
DMACON: 4000 INTENA: 0000 (0000) INTREQ: 0020 (0020) VPOS: 0 HPOS: 0
COP1LC: 00000000, COP2LC: 00000000 COPPTR: 00000000
DIWSTRT: 0000 DIWSTOP: 0000 DDFSTRT: 0000 DDFSTOP: 0000
BPLCON 0: 0000 1: 0000 2: 0000 3: 0c00 4: 0011 LOF=0/0
[Thread 0x7fffee9d6710 (LWP 11208) exited]
[New Thread 0x7fffee9d6710 (LWP 11213)]
SDLGFX: Initialized.
SDLGFX: Using SDL version 1.2.14.
SDLGFX: Display is 32 bits deep.
SDLGFX: Found screenmode: 1680x1050.
SDLGFX: Found screenmode: 1600x1024.
SDLGFX: Found screenmode: 1440x900.
SDLGFX: Found screenmode: 1400x1050.
SDLGFX: Found screenmode: 1360x768.
SDLGFX: Found screenmode: 1280x1024.
SDLGFX: Found screenmode: 1280x960.
SDLGFX: Found screenmode: 1152x864.
SDLGFX: Found screenmode: 1024x768.
SDLGFX: Found screenmode: 960x720.
SDLGFX: Found screenmode: 960x600.
SDLGFX: Found screenmode: 960x540.
SDLGFX: Found screenmode: 928x696.
SDLGFX: Found screenmode: 896x672.
SDLGFX: Found screenmode: 840x525.
SDLGFX: Found screenmode: 832x624.
SDLGFX: Found screenmode: 800x600.
SDLGFX: Found screenmode: 800x512.
SDLGFX: Found screenmode: 720x450.
SDLGFX: Found screenmode: 720x400.
SDLGFX: Found screenmode: 700x525.
SDLGFX: Found screenmode: 680x384.
SDLGFX: Found screenmode: 640x512.
SDLGFX: Found screenmode: 640x480.
SDLGFX: Found screenmode: 640x400.
SDLGFX: Found screenmode: 640x350.
SDLGFX: Found screenmode: 576x432.
SDLGFX: Found screenmode: 512x384.
SDLGFX: Found screenmode: 416x312.
SDLGFX: Found screenmode: 400x300.
SDLGFX: Found screenmode: 360x200.
SDLGFX: Found screenmode: 320x240.
[New Thread 0x7fffec3a9710 (LWP 11214)]
Found 3 joystick(s)
[Thread 0x7fffec3a9710 (LWP 11214) exited]
Using cooked keymap
[New Thread 0x7fffec3a9710 (LWP 11215)]
Thread 'GTK-GUI' started (50710368)
Entered action_replay_load ()
ROM loader..
Failed to open 'kick.rom'
^C
Program received signal SIGINT, Interrupt.
0x00007ffff4573b50 in sem_wait () from /lib/libpthread.so.0
(gdb) bt
#0 0x00007ffff4573b50 in sem_wait () from /lib/libpthread.so.0
Cannot access memory at address 0x7fffffffd838
(gdb)
Latest code = infinite loop
GnoStiC
18 May 2010, 13:29
ok, i see the problem but now i'm busy with puae 2.2.0 beta 1.. i'll fix that later..
________
Yamaha YZF1000 (http://www.cyclechaos.com/wiki/Yamaha_YZF1000)
Hi, the PUAE for Mac doesn't work with my hardfile and config. It works with classic E-UAE, though.
Hi, the PUAE for Mac doesn't work with my hardfile and config. It works with classic E-UAE, though.
I used to get that if RDB was set wrong.
RDB cannot be set wrong if the hardfile works with E-UAE.
But if so, what do you mean by "wrong", what and where can I fix it?
Thanks.
GnoStiC
10 June 2010, 08:06
@yan: make sure you've the latest PUAE
________
volcano vaporizer digital (http://vaporizers.net/volcano-vaporizer)
Pyromania
10 June 2010, 11:17
PUAE for Mac OS X did not work for me. It can't find a config file and WinUAE config files don't work with it.
@yan: make sure you've the latest PUAE
I have the 2.1.0 version from 18 May 2010.. is this the latest public version for MacOSX? Thanks.
Toni Wilen
10 June 2010, 11:34
Hi, the PUAE for Mac doesn't work with my hardfile and config. It works with classic E-UAE, though.
Blocksize set to zero can cause this. Include harddrive part of config file.
PUAE for Mac OS X did not work for me. It can't find a config file and WinUAE config files don't work with it.
I am quite sure I am not the only one who hates and/or ignores "don't work" bug reports :)
GnoStiC
10 June 2010, 11:57
@all:
i don't have a mac, so i can't help you guys with macosX binaries. xaind was compiling and posting them to zone but i guess he's busy so he can't..
@yan:
latest PUAE version is 2.2.0, you are using 2.1.0 which had hardfile bugs..
@pyromania:
what Toni said..
________
volcano classic (http://vaporizer.org/reviews/volcano)
Hungry Horace
10 June 2010, 21:19
would it not be wise to lock this thread, and link to the PUAE 2.2.0 thread?
still waiting for the latest fixes on OSX myself (my own system is clearly not set-up for compiling it, and I hate to waste the guys time trying to sort that out)
Pyromania
11 June 2010, 09:10
Error message if you want to call it that.
"PUAE: Open Configuration File"
Every file is ghosted and can't be open.
Maybe someone can just Zone me a config file that works with PUAE?
GnoStiC
11 June 2010, 10:37
that's macos releated issue, something i can't help you with..
(i don't have a mac, i don't know about macs..)
Error message if you want to call it that.
"PUAE: Open Configuration File"
Every file is ghosted and can't be open.
Maybe someone can just Zone me a config file that works with PUAE?
________
KH100 (http://www.cyclechaos.com/wiki/Kawasaki_KH100)
Pyromania
12 June 2010, 03:27
that's macos releated issue, something i can't help you with..
(i don't have a mac, i don't know about macs..)
I don't think the config file has to be from the Mac version.
GnoStiC
12 June 2010, 05:18
my development .uaerc;
cpu_type=68020
chipset=aga
#cpu_type=68000
#chipset=ocs
collision_level=playfields
chipmem_size=4
bogomem_size=0
fastmem_size=4
#kickstart_rom_file=/home/gnostic/amiga/kick.rom
kickstart_rom_file=/home/gnostic/amiga/KickRoms/KICK-3.1(40.10).ROM
hardfile2=rw,DH0:/home/gnostic/amiga/System.hdf,32,1,2,512,-10,
filesystem2=rw,DH1:Stuff:/home/gnostic/amiga/harddisk,-10
sdl.use_gl=true
floppy0sound=-1
show_leds=true
________
buy volcano vaporizer (http://vaporizers.net/volcano-vaporizer)
New build of PUAE for Mac OS X is up in the zone. It is based on GnoStiC's most recent commit (8510c21, July 1st 2010) at the time of this post.
The ReadMe file should explain how to get started with it.
GnoStiC
07 July 2010, 10:45
@xaind: thanks :)
btw, i'll push 2.2.1 later today..
________
buy vaporizers (http://vaporizers.net/vaporizers)
nexusle
25 July 2010, 22:07
New build of PUAE for Mac OS X is up in the zone. It is based on GnoStiC's most recent commit (8510c21, July 1st 2010) at the time of this post.
The ReadMe file should explain how to get started with it.
Hi @xaind
I tested your build 2.1.0 for Mac OS X (18.05.) and have some issues:
1. Picasso96 doesn't work for me (also not in E-UAE, problem with snow leopard?)
2. is there no SCSI support in your build?
3. how to get drive sound working with your build?
4. and the importent: who to get new builds??
thanks for answering
@nexusle:
1. Picasso96 doesn't work for me (also not in E-UAE, problem with snow leopard?)
It definitely works in E-UAE under Snow Leopard.
I haven't really been trying any P96 configs with PUAE... Just tried Classic WB 'P96' now and it isn't working...
@GnoStiC: Does it work for you in Linux? (I've attached my config file and a screenshot of an error that appears during bootup of ClassWB P96.)
2. is there no SCSI support in your build?
I'm compiling with '--enable-scsi' but I don't use that feature myself. Hopefully a Linux user can chime in here and let us know if it works in PUAE for Linux. If you aren't able to get it working with the latest build, post a description of the problem here, along with a copy of your config file and the PUAE log file (i.e. ~/Library/Logs/PUAE.log)
3. how to get drive sound working with your build?
Make sure the 'uae_data' folder that came with PUAE is in the same place as the PUAE application.
(If your build of PUAE didn't come with a uae_data folder, grab the most recent one.)
4. and the importent: who to get new builds??
The latest one is still in the zone. I think Hungry Horace is hosting builds somewhere, but I don't remember the link right now.
GnoStiC
26 July 2010, 15:08
@GnoStiC: Does it work for you in Linux? (I've attached my config file and a screenshot of an error that appears during bootup of ClassWB P96.)
it works for me but then again i have puae 2.3.0 *evil grin*
The latest one is still in the zone. I think Hungry Horace is hosting builds somewhere, but I don't remember the link right now.
http://www.ultimateamiga.co.uk/index.php/page,13.html
________
VFR800 (http://www.cyclechaos.com/wiki/Honda_VFR800)
nexusle
26 July 2010, 20:17
Hi @xaind, @GnoStiC
@nexusle:
It definitely works in E-UAE under Snow Leopard.
I haven't really been trying any P96 configs with PUAE... Just tried Classic WB 'P96' now and it isn't working...
I get the same error message as you on both emulators in AmigaOS 3.1(have the latest E-UAE (compiled under 10.4.x before much moons :) ))
Make sure the 'uae_data' folder that came with PUAE is in the same place as the PUAE application.
(If your build of PUAE didn't come with a uae_data folder, grab the most recent one.)
Have this folder in the exe path. what config option I must set?
The latest one is still in the zone. I think Hungry Horace is hosting builds somewhere, but I don't remember the link right now.[/QUOTE]
Have version 2.1.0 from the source GnoStiC has posted. Is this the latest?
nexusle
26 July 2010, 20:30
Now I have found the Config entry on your attached config file @xaind. thanks
SCSI emulation works definitly not with my build, because I get no CD32 boot screen with PUAE but with E-UAE with the same config. Is it possible, that the SCSI emulation config option is not needed for compiling, but the cd32 option is missing?
In Mac OS X there is "cdrecord" needed to build successful with SCSI support, I think. In E-UAE it is.
I get the same error message as you on both emulators in AmigaOS 3.1(have the latest E-UAE (compiled under 10.4.x before much moons :) ))
For E-UAE: Have a look at the config file in my previous message. I'm using it with E-UAE and Picasso96 modes work.
Sounds like there are some P96 fixes to come in a future source push from GnoStiC. Hopefully that will fix it for us in PUAE.
Have version 2.1.0 from the source GnoStiC has posted. Is this the latest?
No, the version in the zone is more recent.
SCSI emulation works definitly not with my build, because I get no CD32 boot screen with PUAE but with E-UAE with the same config. Is it possible, that the SCSI emulation config option is not needed for compiling, but the cd32 option is missing?
In Mac OS X there is "cdrecord" needed to build successful with SCSI support, I think. In E-UAE it is.
Yes, you're right.. I'm not getting SCSI support built in because I don't have the SCSI support files from cdrtools. The latest sources won't build for me though.. do you have a copy that builds in Mac OS X?
nexusle
27 July 2010, 12:38
For E-UAE: Have a look at the config file in my previous message. I'm using it with E-UAE and Picasso96 modes work.
Yes, your'e right! E-UAE works for me also with Picasso96 modes. I only has to delete the old sdl.framework in E-UAE and replace it with a newer one.
Sounds like there are some P96 fixes to come in a future source push from GnoStiC. Hopefully that will fix it for us in PUAE.
I hope so.
No, the version in the zone is more recent.
How to find these newer version? What's the "zone"?
Yes, you're right.. I'm not getting SCSI support built in because I don't have the SCSI support files from cdrtools. The latest sources won't build for me though.. do you have a copy that builds in Mac OS X?
No, I haven't any sources that build on newer versions of OS X, but you can download my latest Build of E-UAE with SCSI support from http://web.mac.com/nexusle/E-UAE/E-UAE.html
vBulletin® v3.7.0, Copyright ©2000-2013, Jelsoft Enterprises Ltd.