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

Pages: 1 ... 53 54 [55] 56 57 ... 173
811
Nope, i doubt that is a bug.
I was doing
Fill(loc,#,quantity)
instead of
Fill(loc,quantity,#)

Got the maker finished :)
Lol, nice.
In that order.

812
TI Z80 / Re: zStart - an app that runs on ram clears
« on: October 02, 2011, 05:54:54 pm »
Uh, I actually use the safe ram clears to fix memory leaks.

813
Humour and Jokes / Re: 9001 signs you're addicted to calcs and Omni
« on: October 02, 2011, 05:33:33 pm »
2253: You have userbars in your sig
2254: You know the hight limit for a userbar
2255: You knew userbars had a hight limit before you read 2254

814
I am using L3 just as free ram for the map maker.
Well then, I suppose that's a bug. Better report it then!

815
TI Z80 / Re: zStart - an app that runs on ram clears
« on: October 02, 2011, 05:29:52 pm »
Oh, zStart crashes nspires with the 84 keypad
And isn't zstart supposed to let you jump to the source of the problem when Axe has an error? If so, it's not working for me.

816
Ok, so i figured out my problem.  I was  using the variable Z for two things :/

Also do not do Fill(L3,1,30)
It causes weirdnesses
Are you using the back buffer?

817
Axe / Re: Axe Q&A
« on: October 02, 2011, 05:25:14 pm »
As it happens, Axe has a command just for that purpose!
expr(Str1,Str2)

818
TI Z80 / Re: Bitulator
« on: October 01, 2011, 10:36:10 pm »
According to geekboy, it'll take about 40 subroutine calls for the stack to start overwriting stuff, meaning that you have about nine or ten calculations to use before it starts overwriting stuff. I think.

819
TI Z80 / Bitulator
« on: September 30, 2011, 10:02:53 pm »
Today, after reading about some contest entries to a contest to produce an awful four-function calculator.
Inspired, I decided to make my own.
Here it is, the Bitulator.
Spoiler For Code:
Quote from: Axe
.BITUL8R
"THE 16 BITULATOR, UTILIZING THE LATEST IN 8.8 TECHNOLOGY?"
Lbl START
If getKey(15)
Returnr
End
sub(INP)
Atheta
ClrHome
While getKey(54)
End
sub(INP)
Lbl 0
ClrHome
Disp "+-*/"
Repeat getKeyK
End
!If K-10
Lbl 10
Repeat 0
randB
If getKey(15)
Returnr
End
End!If B^2
!If B^3
Goto 10
End
!If B^5
Goto 10
End
!If B^7
Goto 10
End
Else!If K-11
Lbl 11
Repeat 0
randB
If getKey(15)
Returnr
End
End!If B^3
!If B^2
Goto 11
End
!If B^5
Goto 11
End
!If B^7
Goto 11
End
Else!If K-12
Lbl 12
Repeat 0
randB
If getKey(15)
Returnr
End
End!If B^5
!If B^2
Goto 12
End
!If B^3
Goto 12
End
!If B^7
Goto 12
End
Else!If K-13
Lbl 13
Repeat 0
randB
If getKey(15)
Returnr
End
End!If B^7
!If B^2
Goto 13
End
!If B^3
Goto 13
End
!If B^5
Goto 13
End
Else
Goto 0
End
sub(I)
Lbl I
If getKey(15)
Returnr
End
!If B-0
sub(START)
Else!If B^2
sub(ADD)
Else!If B^3
sub(SUB)
Else!If B^5
sub(PROD)
Else!If B^7
sub(DIV)
End
Lbl ADD
For(Q,0,65535)
If getKey(15)
Returnr
End
A++
theta--
If getKey(0)
Disp A>Hex,theta>Hex,Q>Hex,i
End
!If theta
Goto Atheta
End
End
Lbl Atheta
0B
0B
sub(I)
Lbl SUB
~AA
sub(ADD)
Lbl PROD
theta**AA
0B
sub(I)
Lbl DIV
A^^-1A
sub(PROD)
Lbl INP
ClrHome
Repeat getKey(54)
Output(0,,A>Hex
EndIf getKey(0)
If getKey(15)
Returnr
End
!If getKey(54)
If getKey(1)
A++
End
If getKey(2)
A++
End
If getKey(3)
A--
End
If getKey(4)
A--
End
Goto INP
End


Generated by the BBify'r (http://clrhome.org/resources/bbify/)
Beware, use it too many times without exiting the program, and the stack can start corrupting stuff. When it starts displaying noncharacters instead of numbers, that's a good sign it's about time to quit.
The source is also attached, in case you like your sources in 8xp form

820
Humour and Jokes / Re: 9001 signs you're addicted to calcs and Omni
« on: September 30, 2011, 06:01:05 pm »
2243: You don't misspell anyone's name
2244: Except for mine.

821
The Axe Parser Project / Re: Axe Parser
« on: September 30, 2011, 06:00:03 pm »
Well, two birds with one stone.
and Now we can do the perennial exercise of swapping two vars without creating a third var!

822
The Axe Parser Project / Re: Features Wishlist
« on: September 30, 2011, 05:58:29 pm »
I actually do abuse ? to turn
If A
Stuff
End
into
A?Stuff
for certain values of Stuff

823
Miscellaneous / Re: Dreams
« on: September 30, 2011, 10:58:12 am »
bump

824
TI Z80 / Re: zStart - an app that runs on ram clears
« on: September 30, 2011, 10:38:14 am »
You seem to make the assumption that a label is always at the start of a line, which causes some interesting glitches when you have
.Lbl FOO

825
ASM / Re: The worst TI code I've ever seen
« on: September 30, 2011, 10:12:59 am »
Maybe it's deliberately obfuscated code?
Perhaps, but...
Actually, it seems just like TI to try and "protect" their code with something this stupid and heinous, but they don't seem smart enough to deliberately write bad code. I think they just produce things that make you give up all hope unintentionally. Or....

Pages: 1 ... 53 54 [55] 56 57 ... 173