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 - Darl181

Pages: 1 ... 74 75 [76] 77 78 ... 253
1126
Axe / Re: Axe Q&A
« on: November 20, 2011, 05:36:57 pm »
Spoiler For quote:
Am I doing this right?
"appvBLARG"→Str1
GetCalc(Str1,123)→oVAR
255→oVAR
!If oVAR-255
.if equal to 255
Disp "Yay"
Else
Disp "Noes"
End


I thought it would be more like

"appvBLARG"→Str1
GetCalc(Str1,123)→oVAR
255→{oVAR}
!If {oVAR}-255
Disp "Yay"
Else
Disp "Noes"
End


Since you treat appvars like areas of free RAM. I'm not certain though.
Leafiness has it right.  However it's still giving me problems:
GetCalc(Str1,12)→oPTR
...throws ERR:INVALID TOKEN at compile time and points to the o.

Is there a way to make a custom-named variable point to an appv, prgm, etc?  Or is it basically a static pointer a la Str# or Pic#?

1127
Site Feedback and Questions / Re: Axe suspended
« on: November 20, 2011, 03:22:24 pm »
* Darl181 wonders if it would help to change the title of this topic, so there isn't as much confusion? x.x

1128
TI Z80 / Re: zStart - an app that runs on ram clears
« on: November 20, 2011, 03:03:10 pm »
I'm not sure if this is related to zStart either, but whenever the calc garbageCollects the calc starts screwing up...I've gotten "ERR:?" twice now and it likes to deposit junk tokens on the homescreen.
That's not related to zStart, but try this. I wouldn't doubt that you are very close to having a non-booting calculator.
Yeah, I use that fairly often :/
[offtopic]So for the booting thing, would it be possible to fix it with Flashy or something?[/offtopic]

1129
Humour and Jokes / Re: 9001 signs you're addicted to calcs and Omni
« on: November 20, 2011, 01:23:59 am »
2433: Sometimes when you hear a song in a TV commercial it reminds you of one of DJ's songs

1130
Miscellaneous / Re: Why did you learn how to program?
« on: November 20, 2011, 01:11:22 am »
After about a year of working my way through ticalc.org's featured programs list (and eventually got bored :P), I wanted to make my own.

1131
Axe / Re: Axe Q&A
« on: November 20, 2011, 12:54:20 am »
Am I doing this right?
"appvBLARG"→Str1
GetCalc(Str1,123)→oVAR
255→oVAR
!If oVAR-255
.if equal to 255
Disp "Yay"
Else
Disp "Noes"
End

1132
TI Z80 / Re: zStart - an app that runs on ram clears
« on: November 19, 2011, 08:59:40 pm »
I'm not sure if this is related to zStart either, but whenever the calc garbageCollects the calc starts screwing up...I've gotten "ERR:?" twice now and it likes to deposit junk tokens on the homescreen.

1133
General Calculator Help / Re: TI/Casio IO cables: Inter-compatibility?
« on: November 18, 2011, 06:51:44 pm »
*necrodoublepost*
I finally got around to converting a Casio cable..now all the parts connect directly to each other. (tip-tip, ring-ring, sleeve-sleeve) ;D
Haven't tested it with a calc yet, but the multimeter says it's working so whee ^_^

1134
Miscellaneous / Re: Post Your Blog
« on: November 18, 2011, 03:37:03 pm »
It's lower then BOB!'s I believe?
I think he got something like -70, this guy's going through the -300's atm x.x

EDIT done right this time: (accidentally clicked quote instead of modify XD)
Spoiler For edit:
not sure if people know this or not, but there's this globe icon under many people's avatars that links to their site if they specified one.

1135
TI Z80 / Re: zStart - an app that runs on ram clears
« on: November 18, 2011, 10:44:15 am »
I'm not sure if it's zStart-related or not, but I'm getting screen glitches on an 84pbe w/2.43.  Even games that normally don't shift around weirdly* are doing it sometimes, such as TinycarZ, Acelgoyobis, Phantom Star, and some others...(the hour-long periods at school are horrible for trying to develop x_x)
Running zStart fixes the problem.  The only apps I have installed are zStart, Axe and Mirage, and that hasn't changed for months but it only started happening recently (maybe since updating to .004?  idk).

*shifting, like, one column at a time, not big chunks of the screen like "normal".  It looks something like a wave effect..

1136
The Axe Parser Project / Re: Bug Reports
« on: November 17, 2011, 06:43:58 pm »
I know exactly what is causing that error.  It is as runner said, the peephole optimizer.  There is currently a bug where Axe confuses offsets with constants and is turning your code into exactly this:

Code: [Select]
Data(0,0,0,0,0,0,0,0,0,......)->A
GetCalc("appvMTEMP",)->B
Copy(A,B,48

The current offset in the code is 48 and you were using 48 at the same time to specify the size.  It also happens to be in a pattern that normally peephole optimizes.  So now its attempting to create an appvar with a size equal to the pointer which is a number around $9E00 which is over 40,000 bytes!  You can fix this temporarily as Runer said by using zoom compile or adding one more zero to your data.  Adding more code to the end wouldn't fix anything because there aren't any known bugs with ending code changing behavior to my knowledge.
Aha, so this must be why the Essence editor truncates randomly...
Good to hear that it's found tho :)

1137
Site Feedback and Questions / Re: Poll system broken
« on: November 17, 2011, 06:40:12 pm »
Yay for working polls :D

1138
Humour and Jokes / Re: [CONTEST] 42 signs you're addicted to calcs and Omni
« on: November 17, 2011, 06:30:09 pm »
Ergh, somebody want to make a poll for me? I'm too lazy busy right now.
Added. :)

1139
Axe / Re: Axe Q&A
« on: November 17, 2011, 10:45:28 am »
Well, you'd do it something like this:
Spoiler For kind of big:
[FFFFFFFFFFFFFFFFFFFFFFFF]→GDB6
[FFFFFFFFFFFFFFFFFFFFFFFF]
[FFFFFFFFFFFFFFFFFFFFFFFF]
[FFFFFFFFFFFFFFFFFFFFFFFF]
[FFFFFFFFFFFFFFFFFFFFFFFF]
[FFFFFFFFFFFFFFFFFFFFFFFF]
[FFFFFFFFFFFFFFFFFFFFFFFF]
.etc
.same for other buffer, just a different GDB ofc

.one way..
Copy(GDB#,L6,768)
Copy(GDB#,L3,768)
.buffer modifying stuffs, such as a selector in a menu etc
Dispgraphrr

.another way..a bit weird to modify tho
DispGraph(GDB#,GDB#)rr
.(front,back)

There's prolly more ways, those are just examples but yeah :P

1140
Axe / Re: Axe Q&A
« on: November 17, 2011, 10:36:15 am »
Just copy/paste the text into the editing window.
(same page where is has the upload box, there's the calc icons off to the side)

Pages: 1 ... 74 75 [76] 77 78 ... 253