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

Pages: 1 ... 8 9 [10] 11 12 ... 24
136
KnightOS / Re: Feature Requests
« on: September 29, 2010, 04:06:00 pm »
I guess there will be a version of tiDE for KOS?

137
TI Z80 / Re: Motherload
« on: September 29, 2010, 04:03:18 pm »
wow! that's really nice!

138
KnightOS / Re: Feature Requests
« on: September 29, 2010, 12:20:52 pm »
well, some networking-like thing would be very nice! and I am going to learn ASM in the near future, and then i wouldl ike to participate in this project, tho I don't know how much time I will need to learn ASM.

139
KnightOS / Re: Feature Requests
« on: September 29, 2010, 12:10:25 pm »
could you also add USB devices support? like Bluetooth dongles and USB sticks?

140
KnightOS / Re: Knight Filesystem Specification
« on: September 28, 2010, 05:18:45 pm »
wow nice! Those things really are the most beautifull things to make in life IMO :D Your own working data storage system. Won't this have compatibility issues with the TIOS files? And will it be possible to send data to your calc when KnightOS is installed on it using TIconnect/TiLP? When this won't be possible, which I guess being true, will you write your own data transferring program?

141
The Axe Parser Project / Re: Features Wishlist
« on: September 28, 2010, 11:19:01 am »
I like that idea! and I would name the option Compile in the OPTIONS menu, which could be set to report or percentage, and perhaps also both?

142
The Axe Parser Project / Re: Features Wishlist
« on: September 23, 2010, 07:13:16 am »
I prefer to have as less extra tokens to be used as possible. And IMO it's more clear to use sybols instead of letters, like in the UNIX style you use a minus symbol and a letter and an extra space, while in the syntax I suggested it's more clear because of the use of tokens to indicate the type of header data.

for compatibility reasons this is my edited plan:
Code: [Select]
Program:TESTSRC
.HEADER prgm
DiagnosticsOff
.and the rest of the code...

Program:HEADER
TEST "A little test prog" [8142241818244281]

143
TiLP Is a Linking Program :P
and here's your link.
and yes, you need drivers, and GTK+, because it's not only windows, but even for Linux and Mac
But since it's open source, you could write your own portable Windows version based on it :D

144
Axe / Re: The input Command
« on: September 22, 2010, 06:03:36 pm »
well, I think this is a very good idea! let's call it the Axe Commands Catalog :P

145
The Axe Parser Project / Re: Backups
« on: September 22, 2010, 05:33:22 pm »
another question: are the included prgm's also backed-up? or do we lose them when in RAM on RAM clears?

146
or maybe you should just install TiLP :P

147
Axe / Re: The input Command
« on: September 22, 2010, 05:19:03 pm »
well, this is how to Disp-lay the inputted text:

Code: [Select]
input->P    .store the pointer to the inputdata to var P
Disp P

you could also check the length or whatever, because the text will be stored to the pointer returned by the input command. I'm not sure where this is exactly, and the last time I heard something about it, Quigibo didn't know it either.

Code: (Axe) [Select]
.check length of inputdata to save screen to appvar with user-defined name:
Lbl IPT
input->P               .get the input for the name
length(P)->L           .get the length of the name
If L > 8               .check the length of the name
Disp "TOO LONG NAME!"
Goto IPT
End
Copy(P,L5+1,8)         .copy the name to L5
Copy("appv",L5,1)      .set the appv token in front of the name
GetCalc(L5,768)->V     .create a new appvar
Copy(L6,V,768)         .copy screen data to appvar

i hope you'll understand it a little more right now, and correct me if I'm wrong (which I don't think, but I know I'm good at making mistakes somtimes :P)

148
The Axe Parser Project / Re: Axe Parser
« on: September 22, 2010, 05:05:27 pm »
yeah! reference passing! I realy am looking forward to this update! :D

149
The Axe Parser Project / Re: Features Wishlist
« on: September 22, 2010, 04:58:45 pm »
well, it just that I would like to see one syntax in Axe, and not some xml-style thing on the calc, because of it doesn't fit on the screen very well. <prgmname> would fill one complete line, which has to be scrolled through when you want to edit your code.

now suddenly another idea occurs to me: coul the header info be in an external prgm? like this:
Code: (Axe) [Select]
Program:TESTSRC
.prgmHEADER
DiagnosticsOff
.and the rest of the code...

Program:HEADER
TEST "A little test prog" [8142241818244281]

150
The Axe Parser Project / Re: Features Wishlist
« on: September 22, 2010, 01:43:59 pm »
or to keep the Axe syntax: .prgmName "Description" [spritedata]. then you could also do .prgmName [spritedata] when you don't want a description for some reasons...

Pages: 1 ... 8 9 [10] 11 12 ... 24