Posts for TNSe


1 2
8 9 10
18 19
Emulator Coder, Experienced Forum User
Joined: 10/9/2004
Posts: 453
Location: Norway
bl = branch link. It puts next instruction into r14, and branches to the address. Look at it like you would JSR/CALL, except that it puts return address into a register, not on stack. bx r14 is how you return from it. (RTS/RET)
Emulator Coder, Experienced Forum User
Joined: 10/9/2004
Posts: 453
Location: Norway
emulating gb on gba on playstation on dosbox on win98 on mac-linux on mac-emu on winxp on ia64 (opteron) emulating win32.
Emulator Coder, Experienced Forum User
Joined: 10/9/2004
Posts: 453
Location: Norway
Zurreco, this can be used to calculate how many frames until you get 'lucky', in theory :)
Emulator Coder, Experienced Forum User
Joined: 10/9/2004
Posts: 453
Location: Norway
the mod is a constant 10.
  mov r4,10h  <-- r4 is set to 0x10 here.
+   bl 8000a90h 
   lsr r0,r0,2h 
   mov r1,r4  <--- r4 is now copied to r1, so r1 (the divisor) is now 0x10
   bl MOD  <-- do % 0x10
   mov r4,r0
Emulator Coder, Experienced Forum User
Joined: 10/9/2004
Posts: 453
Location: Norway
   mov r4,10h 
+   bl 8000a90h 
   lsr r0,r0,2h 
   mov r1,r4  <---
   bl MOD 
   mov r4,r0
(((mem[02000008] >> 8) * 0x3243F6AD + 0x1B0cB175) >> 2) % 0x10) < r5
Emulator Coder, Experienced Forum User
Joined: 10/9/2004
Posts: 453
Location: Norway
attempt to convert to C :P
#define bignum1 0x6911396F
#define bignum2 0x1B0cB175

int rand_seed;

int rand() // 08000A90h
{
 rand_seed = (rand_seed >> 8) * bignum1 + bignum2;
 return rand_seed;
}

void dunno_80684ee()
{
 int rnd;

 if (something > 0x0f) return; // (?)
 rnd = (rand() >> 2) % 0x10; // Now rnd is between 0-15
 if (rnd < comparething) get_soul(); 
}
Emulator Coder, Experienced Forum User
Joined: 10/9/2004
Posts: 453
Location: Norway
Athlon xp1600+ (1.4ghz), Matrox G200 (No filter support at all). xvid: 45% cpu h264: 90% cpu Will try again later if I get my GF4 fan today..
Emulator Coder, Experienced Forum User
Joined: 10/9/2004
Posts: 453
Location: Norway
I have a request, if you are going to do a run in this game, can it be done in english? :P. It was rather boring to watch when I didn't know what happened :P
Emulator Coder, Experienced Forum User
Joined: 10/9/2004
Posts: 453
Location: Norway
haha, we know that kind too well, we don't mind them anymore, anyway, come over to irc now :) You need to tell us your plans for the second video ;)
Emulator Coder, Experienced Forum User
Joined: 10/9/2004
Posts: 453
Location: Norway
Which is why its awesome for our purpose :) (which is low res, 256x240 usually) I'll try to convince DeHackEd to post some size info and comparison of xvid vs h264.
Emulator Coder, Experienced Forum User
Joined: 10/9/2004
Posts: 453
Location: Norway
or use VLC media player. (free)
Emulator Coder, Experienced Forum User
Joined: 10/9/2004
Posts: 453
Location: Norway
hope so :)
Emulator Coder, Experienced Forum User
Joined: 10/9/2004
Posts: 453
Location: Norway
I only use windows, and all movies play fine here.
Emulator Coder, Experienced Forum User
Joined: 10/9/2004
Posts: 453
Location: Norway
LIKEY VERY GOODY MUCHO INTERESTING!!! PLZ MOREZ!!11one
Emulator Coder, Experienced Forum User
Joined: 10/9/2004
Posts: 453
Location: Norway
Hehe, I liked it a lot! However, I feel your second version will become a lot better.... There are a few questions I want to ask you directly however, so if you could get to the IRC channel (at top of every board its listed), I'd like to talk about those things...
Emulator Coder, Experienced Forum User
Joined: 10/9/2004
Posts: 453
Location: Norway
Very nice work with this one. Now figure out those remaining bugs that you can abuse to get it below 10 minutes ;) j/k
Emulator Coder, Experienced Forum User
Joined: 10/9/2004
Posts: 453
Location: Norway
Why did you enter menu right after beating Phantoom :P
Emulator Coder, Experienced Forum User
Joined: 10/9/2004
Posts: 453
Location: Norway
Dunno how I missed this, but now that I have unmissed it I can comment :P Unfortunately I have never played this game, so its hard for me to give any accurate comments out over what I see :P Good things, you sometimes do nice tricks with bombs and such to kill things faster. Path also seems fairly well planned out (hard for me to judge). However, in dungeon 1 you seem to kill some bats you might have managed to avoid with some luck manipulation. (Killing them makes you stop moving) You dig for money before boxingmatch, which you should have been able to manipulate earlier. Also I'm wondering if taking some of the heart containers from bosses would allow you to take some damage more places (including self damage from bombs) Well yeah, submittable I think :)
Emulator Coder, Experienced Forum User
Joined: 10/9/2004
Posts: 453
Location: Norway
Very neat. Suggestions / Requests: 1: Is it possible to add a 'start immediately' option, vs a 'loading', and 'click play' when completed loading, like most flash things have. 2: Allow scaling 1x, 2x, 3x, and default to 2x?
Emulator Coder, Experienced Forum User
Joined: 10/9/2004
Posts: 453
Location: Norway
From what I read, high definition TV systems use H264 (french president officially demanded it?) and next generation DVD's will be using H264. H264 isn't just some random codec, H264 is the direct industry approved descendant of MPEG (which is H262)
Emulator Coder, Experienced Forum User
Joined: 10/9/2004
Posts: 453
Location: Norway
Ok, your problem is a bit different than I thought then... what cpu speed do you have? (and haev you tried to look for a newer version of VLC?)
Emulator Coder, Experienced Forum User
Joined: 10/9/2004
Posts: 453
Location: Norway
New applications? Just install newest ffdshow and you can use windows media player? ...
Emulator Coder, Experienced Forum User
Joined: 10/9/2004
Posts: 453
Location: Norway
Because the SMV's requires you to have the correct ROM file. (And I will not further explain what implications that has)
Emulator Coder, Experienced Forum User
Joined: 10/9/2004
Posts: 453
Location: Norway
hehe, was just asking ;)
Emulator Coder, Experienced Forum User
Joined: 10/9/2004
Posts: 453
Location: Norway
Mm,... wheres my update! :(
1 2
8 9 10
18 19