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

Pages: 1 ... 9 10 [11] 12 13 ... 24
151
Other Calculators / Re: Mimas by Benjamin Moody
« on: October 03, 2010, 11:48:09 am »
That person who said something about the virtual calc, it's not the same thing.   It is just to look like you have two seperate calcs running on the same calc.  If one crashes, the other crashes

Yeah. I didn't know Virtual Calc was in Omnicalc, but I did know there was a separate Virtual Calc app (also by Michael Vincent). I was thinking of something more like emu8x.

152
General Calculator Help / Re: Installing TiEmu on Linux
« on: October 03, 2010, 10:01:15 am »
It's working now- thanks again, Lionel.

153
Other Calculators / Solar89 SDK 0.3
« on: October 03, 2010, 04:11:32 am »
Solar89 SDK 0.3



http://www.omnimaga.org/index.php?action=downloads;sa=view;down=579

The Solar89 SDK is a suite of programs to allow TI-BASIC programs for z80 calculators to be written on 68k calculators. There are four programs included, Solar89, maketok, make8xp, and toolbr8x. Documentation on how to use them is included, as is a sample "Hello World" program in *.89t format that serves as a demo. 0.3 is a beta version without all 83+/84+ tokens supported, and without any token files for other z80 calculators.

154
Other Calculators / Re: Mimas by Benjamin Moody
« on: October 02, 2010, 11:42:55 pm »
This is awesome! Even though I only tried it in WabbitEmu (my calc has a broken link port)- I was able to quickly write and assemble a program.

What would it say about me if I use WabbitEmu + Mimas to write programs rather than Spasm or Brass?

c) If this is only 0.1, what's missing? :D

An on-calc emulator, so you can debug your programs without potentially bricking your calc or needing a computer?  :P

155
Other Calc-Related Projects and Ideas / Re: Solar89 SDK
« on: October 02, 2010, 11:10:40 pm »
I've fixed the bug. And I've released 0.3, with versions uploaded to ticalc.org, Cemetech, and Omnimaga. Can't download until they're approved, though.

The full list of changes are:

-Support for binary token files (with included program- maketok- to make them)
-Support for whitespace in text files
-Bugfix where empty lines in the middle of a program caused infinite loop
-Solar89 and maketok auto-archive output files

156
General Calculator Help / Re: Installing TiEmu on Linux
« on: October 02, 2010, 01:24:56 pm »
Thanks Lionel! I have Windows booted at the moment, but when I boot back into Linux I'll redownload and recompile.

157
Humour and Jokes / Re: 9001 signs you're addicted to calcs and Omni
« on: October 02, 2010, 11:57:02 am »
589: You buy half a dozen TI-84+ SEs once you hear that they're being discontinued.
590: You do 589 anyway even though you already have two of them.

158
News / Re: TI-84+SE discontinued
« on: October 01, 2010, 05:58:02 pm »
I can see why it would make sense to retire the Silver Edition and not the regular calc from a business standpoint. It's a more expensive 84+ with more memory- that's it. The only person who's going to be interested in that is someone who either is buying the calc for development/gaming (like I would be)... or someone fooled by advertising.

And, if TI's desperate to cut costs (as we saw with the RAM pages incident), they probably would want to scrap a calc with extra memory for cheaper assembly.

159
General Calculator Help / Re: Installing TiEmu on Linux
« on: October 01, 2010, 03:15:35 pm »
Thank you for your script, Lionel- but I got this error when I ran it, after it got to building TiEmu:

Code: [Select]
m68k-dis.c: In function 'm68k_scan_mask':
m68k-dis.c:1463: error: a label can only be part of a statement and a declaration is not a statement
m68k-dis.c:1463: error: redefinition of 'rc_name'
m68k-dis.c:1422: note: previous definition of 'rc_name' was here

It then exited with an error.

160
General Calculator Help / Installing TiEmu on Linux
« on: September 30, 2010, 09:17:58 pm »
So, I've recently installed a Fedora 13 partition on my desktop (replacing an old XP partition). I've been installing various calculator-related stuff, but I'm having a little problem with TiEmu.

I ran ./configure after extracting the tar archive, and got the following error message:

Quote
configure: error:
in the prefix, you've chosen, are no KDE headers installed. This will fail.
So, check this please and use another prefix!

This is most likely because I don't have KDE installed on my system- Fedora (13, at least) comes with Gnome. What I'm not sure about is what package to install without installing KDE itself- is there something containing just the headers?

161
Other Calc-Related Projects and Ideas / Re: Solar89 SDK
« on: September 30, 2010, 03:50:36 pm »
Oh I see. I would just parse it as the latter. Was it what caused you issues?

Nope, what caused issues would be this:

Code: [Select]
:ClrHome
:
:Disp "HELLO WORLD"

I've fixed it- partially. Now two empty lines are produced in between instead of one.

162
News / Re: TI-84+SE discontinued
« on: September 30, 2010, 03:46:45 pm »
I have an old TI-83+ Black Edition. Maybe I can trade it for an 84+SE for someone who doesn't care at all about calcs... it works fine except the link port is broken. For someone who doesn't care about programming or gaming, maybe that would be okay...

You can still buy 84+SEs off Amazon for now.

163
Other Calc-Related Projects and Ideas / Re: Solar89 SDK
« on: September 30, 2010, 08:02:22 am »
I know that, what I meant is if I was using whitespace like this in the text file:

Code: [Select]
: ClrHome
: Disp "HELLO WORLD"

Then I could either parse it as this:

Code: [Select]
::ClrHome
::Disp "HELLO WORLD"

Or as this, and save two bytes:

Code: [Select]
:ClrHome
:Disp "HELLO WORLD"

164
Other Calc-Related Projects and Ideas / Re: Solar89 SDK
« on: September 29, 2010, 07:43:33 pm »
I've gotten the file type/extension (whatever you want to call it) implemented. This is only a feature if you're using a compiled token file- otherwise, all files will be given the 8XP file type by default.

I've also added code to automatically archive the resultant files- both for my token compiler (on calc-name is maketok) and Solar89 itself.

I added whitespace support, so Solar89 will automatically discard all extra spaces in front of lines. It won't replace them with : characters or anything like that (that's a way to waste memory)- it just trims them out at the start.

I'm also trying to get empty lines supported, but I'm having some weird issues with that. If the line is at the top of the program, it works fine. If it's in the middle, between two other lines of code, tokenization takes much longer than usual and then it hangs. And if it's at the end, the program runs as normal but the lines at the end don't appear for some reason.

The last problem isn't a huge one (because Solar89 already inserts an extra newline character at the end of the each program), but the first problem definitely is.

165
Other Calc-Related Projects and Ideas / Re: Solar89 SDK
« on: September 27, 2010, 09:59:05 pm »
nice update! In the VAR-LINK menu will the 85P part be .85P at the end of the program or just be part of the file name, not the extension? I'm glad this is still progressing :)

I wonder if this will make it much easier to port games accross calcs?

It will be the text in the second column- that says ASM, PRGM, TEXT, EXPR, STR, MATR, etc. I'm calling that the extension- not sure exactly what the technical term is.

Porting eventually might become easier using Solar89, but I'll need to write some other tools first (like an on-calc detokenizer and an on-comp 8xp-89y converter, not to mention a complete set of token files).

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