Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Xeda112358

Pages: 1 ... 263 264 [265] 266 267 ... 317
3961
BatLib / Re: BatLib
« on: February 23, 2011, 01:53:42 am »
Yeah, it is now out of demo mode :D I will add as I get time and I will update the downloads section :)

3962
Math and Science / Re: Imaginary Numbers Question
« on: February 22, 2011, 09:32:47 pm »
I feel happy that I actually understand what I just typed.

3963
Math and Science / Re: Imaginary Numbers Question
« on: February 22, 2011, 09:16:56 pm »
I think prime numbers are described as natural numbers, so they must be integers >0

3964
Math and Science / Re: Changing the Base of Numbers
« on: February 22, 2011, 05:36:45 pm »
Oh, yes, that is rather easy/fun. All you do is use mod values and you don't even need to know what that means!
Basically you do X/A and you take the whole part and the remainder. A is your base. so if you do x=117 and A=10 you get 11 and 7. 7 is the last digit. So:

117→q
117/10: q=11 7=r
11/10 : q=1  1=r
1/10  : q=0  1=r

so your number is 117 in base 10 (go figure). Now for base 16:
117/16: q=7  5=r
7/16  : q=0  7=r

so in hex, 117 is 75h


Just remember that after 9 you start to use letters starting at A.

3965
Axe / Re: Specific Tutorials List (Axe)
« on: February 22, 2011, 11:55:14 am »
je ne sais pas mes je pense que je le utiliserai :D
Il me faut étudier la français... et l'Axe

3966
nDoom / Re: nDoom - BETA!
« on: February 22, 2011, 08:49:50 am »
I think any calculator that has a color doom at this level will gain fame :D
And I, too, do not have an Nspire, so I cannot test this out !_!
*snivel*
You... you guys have fun!
:P

3967
ASM / Re: CheckFindSym problem
« on: February 21, 2011, 07:43:21 pm »
Yes, that is the same version and sorry bout the 'cp a' thing :D I'll go fix that. But yeah, the thing is that I am pretty sure it isn't the code that is wrong. I am pretty sure it is an OS problem. I am thinking that I should just open the debugger in Wabbitemu...

3968
ASM / Re: CheckFindSym problem
« on: February 21, 2011, 06:01:58 pm »
It uses a parsed string for the name of a var and pretty much returns pointers to the var.
Outputs:
A=Flash page
BC=Size
DE=Vat Entry
HL=Data start

Sorry it is taking so long to respond, I'm converting the code on the fly :D
Code: [Select]
Call LocateStr        ;CDB74E      Gets pointers to the next parsed string
inc de                ;13          points to second byte of the string
ld a,(de)             ;1A
cp $EB                ;FEEB        the little L token for lists
jr nz,3               ;2003
ld a,5Dh              ;3E5D        The byte starting lists
ld (de),a             ;12
dec de                ;1B
ex de,hl              ;EB
ld b,c                ;41
ld de,OP1             ;117884
Call TokenToASCII     ;CDCF4B      Used to convert tokens to ASCII (in case lowercase is involved)
xor a                 ;AF
ld (de),a             ;12          this puts a 0 at the end of where the string was converted to (meaning OP1)
inc de                ;13
ld (de),a             ;12
push bc               ;C5          This is the ASCII length of the var name
bcall(_CheckFindSym)  ;EFF142
ld a,b                ;78
pop bc                ;C1

jp c,ERRBadName       ;DC8D55     If the var doesn't exist, goes to error handler
ex de,hl              ;EB
or a                  ;B7
jr nz,5               ;2005       It skips 5 bytes, not sure of the mnemonic syntax
 ld c,(hl)             ;4E
 inc hl                ;23
 ld b,(hl)             ;46
 inc hl                ;23
 ret                   ;C9
add hl,bc             ;09
ld bc,9               ;010900
add hl,bc             ;09

ld b,a                ;47
ld a,l                ;7C
add a,a               ;87
or a                  ;B7
jr nz,3               ;2003      Again, not sure of the syntax, sorry
 inc b                 ;04
 ld hl,40h             ;2640

ld a,b                ;78
out (6),a             ;D306     Erm, writes a to port 6. I think that is out (*),a
ld c,(hl)             ;4E
inc hl                ;23

ld b,a                ;47
ld a,l                ;7C
add a,a               ;87
or l                  ;B5
jr nz,6               ;2006
 inc b                 ;04
 ld hl,40h             ;2640
 ld a,b                ;78
 out (6),a             ;D306

ld a,b                ;78
ld b,(hl)             ;46
inc hl                ;23
push hl               ;E5
add hl,bc             ;09
ld hl,(998Dh)         ;228D99      Some spot in AppBackUpScreen to save the end of the file. It isn't used yet.
pop hl                ;E1
push bc               ;C5          I know this can be optimised by using HL and popping later... I should do that
in a,(6)              ;DB06
ld c,a                ;4F
ld a,(9B71h)          ;3A719B      This has the return app page (set at the begginning of the hook)
out (6),a             ;D306
ld a,c                ;79
pop bc                ;C1
ret                   ;C9
Also, thanks because I have been trying to get around to converting all of the code to mnemonics. This will give me a head start on that :D

3969
ASM / Re: CheckFindSym problem
« on: February 21, 2011, 04:29:02 pm »
For dim(41 command, the code is:
Code: [Select]
Call FindVarNameArc    ;CDEF98      returns: HL=Data Start; A=Flash Page; BC=Size; DE=VatEntry location
push af                ;F5
push de                ;D5
push bc                ;C5
ld de,3                ;110300
Call CreateTempList    ;CD274B      Creates a temp list of size DE. Returns BC=Size, DE=pointer to data
pop hl                 ;E1
Call SetXXXXDE         ;CDEB4A      Converts HL to an FP number at address pointed to by DE. DE is incremented by 9
pop hl                 ;E1
ld l,(hl)              ;6E          This is the var type
ld l,0                 ;2600
Call SetXXXXDE         ;CDEB4A      Converts HL to an FP number at address pointed to by DE. DE is incremented by 9
pop af                 ;F1
ld hl,0                ;2600
ld l,a                 ;6F
jp SetXXXXDE           ;CDEB4A      Converts HL to an FP number at address pointed to by DE. DE is incremented by 9
*FindVarNameArc uses a parsed string to copy the name to OP1 and then it uses bcall(_CheckFindSym) to get the pointers. and then more code to get the size and pointer depending on archive status.

3970
Pokémon Purple / Re: [PP] Progress '11
« on: February 21, 2011, 01:30:44 pm »
I think I tried a beta version a long while ago and I wasn't disappointed then, so I am sure I won't be disappointed now :D

3971
Miscellaneous / Re: Poetry
« on: February 21, 2011, 12:09:12 pm »
My poetry always happens when I am smitten, saddened, or distressed, it seems :D
Quote
It is true,
I am who I am,
Though I still don't know who that is,

I'll get there,
We all make it,
But that doesn't stop the hurt,

I just want it,
The answer,
Without the end,

I don't want it gone,
The struggle,
The purpose,

But purpose is painful,
Agonizing,
Slow,

And the answer is,
Seductive,
Desired,

But the end,
It isn't,
It is,

The end.

3972
Miscellaneous / Re: Poetry
« on: February 21, 2011, 11:50:40 am »
:P
I realised that at the very end, but this was an instance where I came up with the title before I actually wrote the poem, so I stuck with happi. Plus, I think it says more than "happiness" because I wanted to get across that I wanted to change and if that meant I had to find a way to put an "I in happy," I would.

3973
Miscellaneous / Re: Poetry
« on: February 21, 2011, 11:41:13 am »
I wrote this a few months ago when I wasn't feeling so great :(
Quote
There is no I in happy,
There is no me in content,
We just don't mix.

There is an I in solitude,
A me in time,
It's all the same.
 
I have nobody,
I have nothing,
Nothing to hold onto.
 
I know pain,
I know misery,
I can feel the sadness.
 
I know it is there,
There is no reason,
It is just a part of me.
 
I can try to fix it,
But what is the point,
Do you see mine?
 
Yes, this is a vent,
I know what I am doing,
I need to get it out.
 
But it isn't going to help,
It is still going to be there,
It hasn't left in 13 years.
 
Why should it go?
It is all I know,
It is a comfort.
 
I have been happy,
I have felt joy,
I think I know love.
 
I don't want a body,
I don't want a voice,
I want a person.
 
Or maybe just an end,
Of the thoughts,
But that is pointless.
 
I can live,
And I will,
But that doesn't stop the want.
 
I have wants,
It is true,
So what do I want?
 
I am not sure,
Right now I think,
I think I want to be happi.

3974
Miscellaneous / Re: Amanda
« on: February 21, 2011, 11:29:57 am »
Cool, there is a poetry topic?

3975
Miscellaneous / Re: Amanda
« on: February 21, 2011, 11:22:21 am »
This is one I wrote because I like patterns >_>

Say,
"Hi."
Hello.
I know you.
You are familiar.
You are that person I once was.
Why is it like you are a reflection of my pains?
Is there some way I can help you?
I cannot say bye.
I need help.
Some advice:
Laugh.
Love.

Pages: 1 ... 263 264 [265] 266 267 ... 317