Search results

  1. GnoStiC

    Uae2x 0.1alpha Wip

    uae has seperate 680x0 opcode tables, so we can do that :)
  2. GnoStiC

    Picodrive 0.96

    well done notaz, keep up the cool work :)
  3. GnoStiC

    Uae2x 0.1alpha Wip

    just a quick status report: frankly, i couldn't spare enough time nowadays to release a new version as my wife will have a surgery this friday and tests and morale support consumes lotsa time.. current status: i've added savestate, aga, 68020, a new 68000 core etc etc but i get segmentation...
  4. GnoStiC

    GP2X Including A Font With Sdl

    // load font.ttf at size 16 into font TTF_Font *font; sample=TTF_OpenFontRW(SDL_RWFromFile("font.ttf"), 1, 16); if(!sample) { printf("TTF_OpenFontRW: %s\n", TTF_GetError()); // handle error } /* Note that this is unsafe because we don't check the validity of the SDL_RWFromFile's returned...
  5. GnoStiC

    Uae2x 0.1alpha Wip

    i remember seeing and downloading some packages on some p2p, but i don't know if they are still available.. i dumped all my demo disks back in 94-95 and downloaded one by one whenever i saw a new one.. but i'd like to know, if you find any "all in one" files :)
  6. GnoStiC

    Uae2x 0.1alpha Wip

    it is an interesting fact that most amiga geeks have more than one amiga, i don't know why <_< i had 3, sold one of them about a year ago (a500 + 2mb chip + 1mb fast + a590 20mb hd + atonce pc emulator + datel action replay 3 + stereo sound sampler + 1084s d1 + tv tuner for 1084s) now i have...
  7. GnoStiC

    Uae2x 0.1alpha Wip

    state of the art is by spaceballs :) and i'll test jesus on e's and make it work :) even though i own an amiga (two actually, one of them is just right next to me (one of those first amigas with red power led that totally goes off when you turn off the sound filter)), i've never played games on...
  8. GnoStiC

    Uae2x 0.1alpha Wip

    hmm? but i don't play with lcd timings.. does anyone else have the same problem? unused 40 pixels? well, low res pal amiga resolution is 320*256, so actually we're 16pixels short :} i'll give it a try :)
  9. GnoStiC

    Uae2x 0.1alpha Wip

    uae2x's reset ejects disks, then resets system.. it won't eject disks in newer versions.. so for now, try selecting a file image after a reset..
  10. GnoStiC

    Uae2x 0.1alpha Wip

    that's me again.. i read system's settings and print them as they are, but actually they are +1.. trc 5(+1) = 6, tras 3(+1) = 4 .. and twr 16 because it returns as 0 and code assumes it overflowed and rotates to highest possible..
  11. GnoStiC

    Uae2x 0.1alpha Wip

    that's because menu also uses usb mouse, so that mouse pointer is freely movable :) i better add limits to it when there is no mouse.. i'll fix it in one of the new versions.. battery led as a disk indicator.. added to my to do list.. yep :rolleyes: you are right.. i'll do it like that...
  12. GnoStiC

    Uae2x 0.1alpha Wip

    well, my uae2x source folder is a mess and is about 93mb now.. (containing many other uae source pieces) i'll be remove unnecessary files by the weekend with a better readme, bugfixes and rls with the source.. actually what uea2x's reset does is eject df0, df1, and reset emulation.. then you...
  13. GnoStiC

    Uae2x 0.1alpha Wip

    let's try this 1) don't insert anything into df0 2) under prefs, set cpu speed to 1 (default is 3) 3) if you have more than more one roms, select it from rom menu or name your rom as kick.rom (all letters lowercase) and place it inside roms folder 4) select run do you see default amiga's insert...
  14. GnoStiC

    Uae2x 0.1alpha Wip

    i'm working on this emulator about 2-3 weeks now.. actually, i tried to understand what uae does for the first 2 weeks.. you simply get lost in that code :) i was avoiding a wip release but i guess more testers and feedback wouldn't hurt.. there are many known issues but feel free to mail me...
  15. GnoStiC

    GP2X Simple Way To Protect Assets?

    there are many ways.. you can get the latest sdl sources, patch loadbmp function and create your own gfx format.. or xor the bmp and xor back while loading.. etc..
  16. GnoStiC

    GP2X Rt73sta Wireless Usb Driver

    you get this when you don't enable usb host mode on your gp2x and/or with wrong kernel header files..
  17. GnoStiC

    Set_fclk Crash

    void set_FCLK(unsigned MHZ) { MHZ = 200; unsigned v; unsigned mdiv,pdiv=3,scale=0; MHZ*=1000000; mdiv=(MHZ*pdiv)/SYS_CLK_FREQ; mdiv=((mdiv-8)<<8) & 0xff00; pdiv=((pdiv-2)<<2) & 0xfc; scale&=3; v=mdiv | pdiv | scale; MEM_REG[0x0910>>1] = v; //while (MEM_REG[0x0902>>1] & 2); is it &1...
  18. GnoStiC

    Set_fclk Crash

    i'm using the cpu speed for overclocking in my software and i have some problems.. step1: 1) gp2x boots, i choose my software from the game menu 2) i use set_add_ULCDCLK and then set_FCLK for overclocking 3) on line MEM_REG[0x910>>1]=v; //Set frequency screen gets garbled like the...
  19. GnoStiC

    Mame 2.8

    that no joystick found error message is normal as the joystick init loop of 4, insmod's 4 times and actually the first one inits them all.. well, after printing the found joysticks info, mame displays splash screen and initializes game listing. so the freezing is after usbjoy init and.. hmm...
  20. GnoStiC

    Mame 2.8

    mame inits joysticks before splash screen so pluggin' after won't help.. it seems your joysticks is not compatible and insmod'ing the joystick module crashes.. (check console output if you can) also see: usbjoy lib + joytest please make sure usb host mode is enabled under settings.
Back
Top