Omnimaga

Omnimaga => News => Topic started by: thepenguin77 on June 28, 2011, 05:32:47 pm

Title: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: thepenguin77 on June 28, 2011, 05:32:47 pm
This whole process started a long time ago when FloppusMaximus unlocked flash on his calculator. Then came custom OS's, the key factoring, and finally modifying the boot code. This will remove almost all traces of TI from your calculator, but your not quite done, you still can't execute code >$C000.

However, today, I managed to do it. I executed code all the way from $C000 to $FFFF on page 0.

I was playing around with DrDnar's MicrOS preparing to do some boot code changes, when I got a little scared and decided to play around with the protected ports a little. I kept going down the line seeing what would change, and what wouldn't, when all of a sudden, writing to port (25h) crashed my calculator. After a little bit of experimentation, I figured out that any value higher than 17h caused a restart. Then I noticed that port (26h) also crashed my calculator, so after a bit more playing, I realized that any value lower than 1Ah would cause a reset.

Why this actually happened caused me quite a bit of trouble. I started outputting different values to the ports and seeing what I could get to crash. I tried running all sorts of programs with these ports enabled and I wasn't really getting any results. But finally, four hours later, with lots of trial and error with StarFox, I realized that the programs would crash if they executed ram low in memory. A quick check with a RET placed at $8000 confirmed this and then I was off to test the limits.

Setting port (25h) to 17h crashed when PC went below 9C00h. 16h crashed at 9800h. So obviously it is counting by 400h. I then did some testing with port (26h). 19h crashed at A800h and 1A crashed at AC00h. So again, counting by 400h.

After a bit more testing, I realized that these ports are looking at the ram chip as a whole where page 00h comes first, then 01h, 02h, and so on and setting the upper and lower ram execution limits.

So...
Send 00h to port (25h) and FFh to (26h) and your calculator will never crash from PC execution ever again.


For more details, see the newly updated wikiTi for ports 25h (http://wikiti.brandonw.net/index.php?title=83Plus:Ports:25) and 26h (http://wikiti.brandonw.net/index.php?title=83Plus:Ports:26).
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: DJ Omnimaga on June 28, 2011, 05:46:05 pm
Wiow this is awesome, so you totally destroyed the 8 KB limit? O.O
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: Hot_Dog on June 28, 2011, 06:02:11 pm
Cool!  What are the original values?

Too bad this doesn't work on a Ti-83+ BE
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: calc84maniac on June 28, 2011, 06:02:56 pm
Cool!  What are the original values?

Too bad this doesn't work on a Ti-83+ BE
It has its own method that's just as easy ;)
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: thepenguin77 on June 28, 2011, 06:03:53 pm
Wiow this is awesome, so you totally destroyed the 8 KB limit? O.O

Gone

Cool!  What are the original values?

Too bad this doesn't work on a Ti-83+ BE

Typically, 25h and 26h are at 10h and 20h respectively. As long as bits 4 and 5 are 00 though, you should only have to set 25h to 00h to make this work.
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: Hot_Dog on June 28, 2011, 06:04:48 pm
Cool!  What are the original values?

Too bad this doesn't work on a Ti-83+ BE
It has its own method that's just as easy ;)

Well, almost as easy...
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: Ashbad on June 28, 2011, 06:34:04 pm
so, doing:

Code: [Select]
ld a,0
nop
nop
im 1
di
out (25h),a
ld a,$FF
nop
nop
im 1
di
out (26h),a

will allow you to never have the >$C000 thing happen again?

AWESOME.
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: Hot_Dog on June 28, 2011, 06:39:14 pm
so, doing:

Code: [Select]
ld a,0
nop
nop
im 1
di
out (25h),a
ld a,$FF
nop
nop
im 1
di
out (26h),a

will allow you to never have the >$C000 thing happen again?


It also looks like you cannot alter the values of the ports unless you do so from certain flash pages.  But I've been wrong before.
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: thepenguin77 on June 28, 2011, 06:41:09 pm
Well, first, flash has to be unlocked before you can even dream about changing ports 25 and 26.

But actually, what we've found through testing is that you don't need that special sequence and it doesn't have to be on a privileged page, the boot code does it, but I'm not really sure you need it. I've been just changing them with OUT ($24), a.


So, unlock flash. Then use the ports like normal.
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: AngelFish on June 28, 2011, 06:43:46 pm
So... Can we get a demo program to try out or is it too dangerous?
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: Deep Toaster on June 28, 2011, 06:57:26 pm
Wow. You did it.

It feels awesome to be reminded that underneath all these little details, the TI-83 Plus series are just little computers.
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: thepenguin77 on June 28, 2011, 06:57:36 pm
Sure, why not. Actually, I want people to run this. It will tell me two things.

1. Do you actually have to do the special sequence to change ports 25h and 26h.
2. Does this work on an 83+SE.

So, just run this program. It will show you the number on screen that it is currently executing at. What it is doing is it is putting a RET at every address in ram and calling it. If it breaks through the $C000 boundary, that means it works fine.

I really need to you run this test if

1. You have a 83+SE. Theoretically, this should work.
2. You have a really low revision 84+BE/SE. We need to know if the port writing still works OK on these.


Finally, here is the program and the source. (I left out the unlock flash so I don't make certain people mad) Just so you know, it clears ram. It will crash when it gets to 10000h or you can pull a battery.
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: Runer112 on June 28, 2011, 07:07:35 pm
I really need to you run this test if

1. You have a 83+SE. Theoretically, this should work.
2. You have a really low revision 84+BE/SE. We need to know if the port writing still works OK on these.

Works on my ancient 0404 84+SE calc. No revision letter because it was the very first revision.
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: Deep Toaster on June 28, 2011, 07:08:16 pm
Runer112 you have one of the first-revision ones? O.O When'd you get it?
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: DJ Omnimaga on June 28, 2011, 07:13:07 pm
I bet plenty of people on IRC still got them, because they were around since their release. I think tr1p1ea has one of them.
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: XVicarious on June 28, 2011, 07:14:44 pm
So about this eliminating the 8kb limit, how long until we can have say like an OS patch to remove this. I know we have Hot_Dog's Crabcake, but what about just completely patching the OS to remove it?
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: thepenguin77 on June 28, 2011, 07:15:14 pm
Well, since runer did a (no revision) we can safely assume that this works on all 84+'s and that you don't need to use the special sequence for anything besides port 14h.

Jkag, how about a boot code mod?
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: DJ Omnimaga on June 28, 2011, 07:19:51 pm
Yeah it's a boot code mode we're talking about here, right? (so the user doesn't have to patch his OS over and over, when re-installing it).

Also I think the difference between this and Crabcake was that Crabcake is one of (if not the) first successful released attempt to break the 8 KB limit, but it actually worked around it, while ThePenguin77 hack gets rid of it completely.

Nice job to Hot Dog on Crabcake and ThePenguin77 on this, and nice job to BrandonW/DrDnar too
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: fb39ca4 on June 28, 2011, 07:21:23 pm
What about the TI logo?
But seriously, nice job on squashing out the TI on your calc.
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: leafy on June 28, 2011, 07:24:20 pm
Well Crabcake doesn't require the user to do anything, it's built into the program itself.
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: XVicarious on June 28, 2011, 07:28:01 pm
well we could have two compiled versions of the game, one with Crabcake, another that is smaller (I believe Crabcake requires some space, albeit not a lot).
I still think its a good idea, its a limit that should have been taken off after TI decided selling apps/programs wasn't gonna work.
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: Hot_Dog on June 28, 2011, 07:54:53 pm
By the way guys, as a reminder, DO NOT ATTEMPT TO UNLOCK FLASH UNLESS YOU KNOW WHAT YOU ARE DOING. ;D

Modifying the boot code is actually a good idea.  However, I don't see it eliminating Crabcake for three reasons:

1. Crabcake is completely portable
2. There are some people who really shouldn't be messing with their boot code (or who don't WANT to mess up their boot code), namely beginners
3. There's always a chance that TI could write a boot 1.02, after which a new patch might have to be written.
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: thepenguin77 on June 28, 2011, 08:03:12 pm
Yeah, hot_dog, I don't think putting it in the boot code is a good idea, yet. We first need to know what kind of side effects this will have before we make it permanent. (Programs will no longer crash, they will freeze or go crazy.)

However, runer figured out an easy way mod the boot code that doesn't involve erasing it, you only overwrite what was previously there. In fact, it is simple enough that I wouldn't mind writing it in the boot code myself. (Not that I'm normal ;))

Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: TIfanx1999 on June 28, 2011, 08:03:45 pm
Wow, so many awesome advances recently! :O Great work thepenguin and anyone else who was involved with this!
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: Hot_Dog on June 28, 2011, 08:05:05 pm
Yeah, hot_dog, I don't think putting it in the boot code is a good idea, yet. We first need to know what kind of side effects this will have before we make it permanent. (Programs will no longer crash, they will freeze or go crazy.)


Hmmm, that makes sense.  It's for that reason that Crabcake relocks the C000-FFFF area upon shutdown
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: thepenguin77 on June 28, 2011, 08:08:36 pm
Yeah, hot_dog, I don't think putting it in the boot code is a good idea, yet. We first need to know what kind of side effects this will have before we make it permanent. (Programs will no longer crash, they will freeze or go crazy.)


Hmmm, that makes sense.  It's for that reason that Crabcake relocks the C000-FFFF area upon shutdown

Wait, you mean you already implemented this? Because if that's the case, then you should save the previous values so that if a person has it permanently unlocked, crabcake won't relock it.

Edit:
    Also with this, you don't to shut down the hooks.
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: Hot_Dog on June 28, 2011, 08:11:51 pm
Yeah, hot_dog, I don't think putting it in the boot code is a good idea, yet. We first need to know what kind of side effects this will have before we make it permanent. (Programs will no longer crash, they will freeze or go crazy.)


Hmmm, that makes sense.  It's for that reason that Crabcake relocks the C000-FFFF area upon shutdown

Wait, you mean you already implemented this? Because if that's the case, then you should save the previous values so that if a person has it permanently unlocked, crabcake won't relock it.

Edit:
    Also with this, you don't to shut down the hooks.

Don't the hooks have problems when a different page is swapped using port $05 on a 15 Mhz?  On the 15 Mhz calcs, RAM is never unlocked.

Whatever the case, I agree about saving the value in case someone permanently unlocked their flash
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: thepenguin77 on June 28, 2011, 08:14:23 pm
Oh, no. Nevermind. I thought that you had already implemented the port 25/26 thing in CrabCake. I meant save those values

And there's no reason to save the flash unlock state, flash gets relocked every time you archive/unarchive something or even run an app.
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: Hot_Dog on June 28, 2011, 08:16:57 pm
Oh, no. Nevermind. I thought that you had already implemented the port 25/26 thing in CrabCake. I meant save those values

And there's no reason to save the flash unlock state, flash gets relocked every time you archive/unarchive something or even run an app.

Actually, if I implemented this, you're right, there's no need to worry about hooks.  It would also save more space.  My hesitation beforehand was I thought I would need to run boot pages, but as it turns out, I only need unlock flash, and crabcake already has the unlock flash code
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: squidgetx on June 28, 2011, 08:32:00 pm
Woah, that's crazy?

But no one's actually tried running anything >8kb yet with this, right? Like penguin said, there's a chance it would do some weird thing instead haha

Or am I interpreting it wrong?
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: Geekboy1011 on June 28, 2011, 08:42:08 pm
ill give that program a whirl on my A model calc when i get home and find some batteries >.> <.<

other than that AWESOME ti lost....again :P

congrats guys this is why we do what we do to enjoy it !!!
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: Camdenmil on June 28, 2011, 08:52:54 pm
Wow, modding boot code and removing the 8kb limit all within 2 days. Program works on my friend's A revision 84+BE. TI just lost for the 9001st time.:hyper:

I just scratch the TI logo off and you're good to go!
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: leafy on June 28, 2011, 09:06:26 pm
TI: "I hate you guys."
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: ruler501 on June 28, 2011, 09:12:17 pm
Wow this is perfect. Screw TI we now have complete control over your calculators. YOu can't lock us out now no matter how hard you try
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: DrDnar on June 28, 2011, 09:13:08 pm
Sure they can. They can just revise the hardware. A little expensive, perhaps, but doable. Then all future students will be stuck with the changes.
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: ruler501 on June 28, 2011, 09:16:48 pm
Sure they can. They can just revise the hardware. A little expensive, perhaps, but doable. Then all future students will be stuck with the changes.
Do you really think they'd mod the hardware to lock us out? That would suck and be pretty expensive for TI
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: DrDnar on June 28, 2011, 09:17:44 pm
It depends on how much pressure they're under to do it. Don't count it out.
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: fb39ca4 on June 28, 2011, 09:17:53 pm
They would only do that if testing people realized these changes would allow people to cheat.
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: leafy on June 28, 2011, 09:18:50 pm
And how exactly would it allow people to cheat
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: fb39ca4 on June 28, 2011, 09:21:31 pm
Well, it is already trivial to use a calculator to cheat, but if say a custom os was made that had a CAS and no press 2 test, there could be issues.
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: leafy on June 28, 2011, 09:22:19 pm
you can already make custom hooks to do that...?
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: calc84maniac on June 28, 2011, 09:22:50 pm
Well, it is already trivial to use a calculator to cheat, but if say a custom os was made that had a CAS and no press 2 test, there could be issues.
The RAM page 0 protection has nothing to do with loading custom OSes :P
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: mrmprog on June 28, 2011, 09:31:11 pm
Kinda late, but good job on this!
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: ruler501 on June 28, 2011, 09:56:14 pm
This specific hack doesn't really do much to the calculator that would help cheating I don't think
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: fb39ca4 on June 28, 2011, 10:09:49 pm
True, but the fact TI now has absolutely no control over what is going on their calculators will make some testing people nervous.
EDIT: 1 more post and I'm at 1K :D
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: DrDnar on June 28, 2011, 10:19:10 pm
This is no way changes the possibly of cheating. That will not change unless the flash unlock exploits themselves are fixed.
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: Netham45 on June 28, 2011, 11:42:07 pm
Works for me on 0405C.
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: Deep Toaster on June 29, 2011, 12:39:32 am
This is no way changes the possibly of cheating. That will not change unless the flash unlock exploits themselves are fixed.

The guys over at T3 don't get that. They think everything we do makes students cheat :P
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: Lionel Debroux on June 29, 2011, 01:13:45 am
Congratulations to thepenguin77... and congratulations to TI as well :)
When they make a nasty move, the community notices, looks deeper... and finds/does some pretty interested things that wouldn't have been found/done so soon without TI's move. And we all laugh at TI's renewed fail.
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: ralphdspam on June 29, 2011, 11:24:57 am
\o/
Yay!  This is wonderful!  Thank you, thepenguin77!



Does anyone see the irony here?  We are an anti-troll community and we spend all of our time trolling TI.  Go figure.  :P
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: ruler501 on June 29, 2011, 11:36:40 am
\o/
Yay!  This is wonderful!  Thank you, thepenguin77!



Does anyone see the irony here?  We are an anti-troll community and we spend all of our time trolling TI.  Go figure.  :P
TI needs to be trolled
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: shmibs on June 29, 2011, 11:51:11 am
hmm, what's supposed to be the max upper limit where that program can execute? FFFF? i just ran it on an old, extra pages 84+ BE and it crashed at FFC7.
anyways, is this the last big step to be taken? the 83/4 series has always been moving forward to some larger goal after achieving one that was previously thought impossible (grayscale, sound, custom OS's, internet access, and now this). is there anything else that remains to be done, now?
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: ruler501 on June 29, 2011, 11:58:10 am
hmm, what's supposed to be the max upper limit where that program can execute? FFFF? i just ran it on an old, extra pages 84+ BE and it crashed at FFC7.
anyways, is this the last big step to be taken? the 83/4 series has always been moving forward to some larger goal after achieving one that was previously thought impossible (grayscale, sound, custom OS's, internet access, and now this). is there anything else that remains to be done, now?
From the title it seems like this was the last step to us being able to completely control the calc
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: Darl181 on June 29, 2011, 11:58:16 am
Sure they can. They can just revise the hardware. A little expensive, perhaps, but doable. Then all future students will be stuck with the changes.
Do you really think they'd mod the hardware to lock us out? That would suck and be pretty expensive for TI
If they did, how long do you think it would last, looking at recent history? :P

Either way, great job ;D

Quote from: shmibs
is there anything else that remains to be done, now?
  ↑
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: JosJuice on June 29, 2011, 12:00:20 pm
There's still Bluetooth and WiFi left, as well as the ability to put the calc in MSD mode... But as far as control goes, we've achieved everything. (Or have we? Is the 83+ boot code unwritable?)
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: ruler501 on June 29, 2011, 12:03:25 pm
There's still Bluetooth and WiFi left, as well as the ability to put the calc in MSD mode... But as far as control goes, we've achieved everything. (Or have we? Is the 83+ boot code unwritable?)
well for the 84's we've achieved everything. The 83 might be impossible from what I read
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: calc84maniac on June 29, 2011, 12:17:48 pm
hmm, what's supposed to be the max upper limit where that program can execute? FFFF? i just ran it on an old, extra pages 84+ BE and it crashed at FFC7.
anyways, is this the last big step to be taken? the 83/4 series has always been moving forward to some larger goal after achieving one that was previously thought impossible (grayscale, sound, custom OS's, internet access, and now this). is there anything else that remains to be done, now?
It's because the stack corrupted stuff, causing a crash. It's unrelated to the actual execution protection.
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: ralphdspam on June 29, 2011, 12:31:51 pm
is there anything else that remains to be done, now?

I'd like mode 0 interrupts/extra i/o ports on the 1999 83+'s.
Also, we could do more reverse engineering on the ASIC.

One great feat at a time, though.  ;)
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: Hot_Dog on June 29, 2011, 02:06:09 pm
is there anything else that remains to be done, now?

I'd like mode 0 interrupts/extra i/o ports on the 1999 83+'s.

Please correct me if I'm wrong, but in order to have mode 0 interrupts, we'd have to redesign the Ti-83+ HARDWARE.  No software in the world could make use of mode 0 on the current Ti-83+s.
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: calcdude84se on June 29, 2011, 03:21:09 pm
I'm decently sure you're correct, Hot_Dog. :D
Edit: Oh, and congrats, thepenguin!
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: Camdenmil on June 29, 2011, 03:54:35 pm
Mode 0 is just the 8080 compatible mode, mode 0 in hardware is much different and impossible through software on the 83+...if only we had the pinout to the asic.
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: DJ Omnimaga on June 29, 2011, 03:59:34 pm

Quote from: shmibs
is there anything else that remains to be done, now?
  ↑
Starcraft over gCn.
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: calc84maniac on June 29, 2011, 04:25:10 pm

Quote from: shmibs
is there anything else that remains to be done, now?
  ↑
Starcraft over gCn.
Even better, Flash Player for starcraft.swf
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: AngelFish on June 29, 2011, 04:32:33 pm

Also, we could do more reverse engineering on the ASIC.

You'd be surprised how much has already been done. I believe we have [nearly] complete schematics for several of the important components.
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: ralphdspam on June 29, 2011, 07:28:41 pm
is there anything else that remains to be done, now?

I'd like mode 0 interrupts/extra i/o ports on the 1999 83+'s.

Please correct me if I'm wrong, but in order to have mode 0 interrupts, we'd have to redesign the Ti-83+ HARDWARE.  No software in the world could make use of mode 0 on the current Ti-83+s.

Yes, you would have to have extra hardware, but we should do it to prove our 1337ness.  ;)
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: DrDnar on June 29, 2011, 07:44:26 pm
I did some tests that suggested that the TI-84+/SE always sends FFh as the byte for IM 2, in which case IM 0 would actually be usable (the ISR would be the RST 38h routine).
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: calc84maniac on June 29, 2011, 09:44:34 pm
I did some tests that suggested that the TI-84+/SE always sends FFh as the byte for IM 2, in which case IM 0 would actually be usable (the ISR would be the RST 38h routine).
Definitely not on TI-83+BE, though (http://www.maxcoderz.org/forum/viewtopic.php?f=5&t=2778)
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: calcdude84se on June 29, 2011, 10:32:13 pm
But what would trigger the interrupt in mode 0? It might go somewhere predictable, but would it ever trigger?
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: calc84maniac on June 29, 2011, 10:33:46 pm
But what would trigger the interrupt in mode 0? It might go somewhere predictable, but would it ever trigger?
It triggers if interrupts are enabled and an interrupt is requested :P
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: calcdude84se on June 29, 2011, 10:37:21 pm
Ah. Sorry, I was confusing IM0 with NMI :-[ (I don't think the hardware ever generates those, right?)
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: ralphdspam on June 29, 2011, 11:32:20 pm
IM0 is when you have an external piece of hardware place an opcode on the Databus to be executed.  It's possible to do on the first 83+ BE's because the z80 is exposed.  I don't know much about the ASIC, so I'm not sure about the later models.
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: calcdude84se on June 29, 2011, 11:37:23 pm
I did some tests that suggested that the TI-84+/SE always sends FFh as the byte for IM 2, in which case IM 0 would actually be usable (the ISR would be the RST 38h routine).
ralphdspam, as DrDnar has said, the TI-84+(SE) seems to put $FF on the databus. ;) (Which would make IM0 equivalent to IM1, it seems)
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: ralphdspam on June 29, 2011, 11:47:26 pm
Why did they do that? Anyways, there would be no point of that on the 84+SE, then. 
I'm talking about applying IM1 to the original 83+BE's. 
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: calcdude84se on June 29, 2011, 11:50:04 pm
On those the databus seems unpredictable, IIRC. This means that your calculator will execute some random instruction (and probably crash :P)
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: calc84maniac on June 29, 2011, 11:51:37 pm
Hmm... somebody needs to test IM 2 with TI-83+SE. If it's always 0xFF, then this might be a useful fact for programs meant to run only on 15MHz calcs.
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: ralphdspam on June 29, 2011, 11:52:30 pm
eew, we don't want that to happen... I wonder if I/O would be possible with those calcs, or would the databus be unpredictable as well?
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: calcdude84se on June 29, 2011, 11:54:50 pm
Wait, what? ??? For I/O we have the linkport, no?
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: ralphdspam on June 30, 2011, 12:03:00 am
No, I mean using the databus for I/O
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: calc84maniac on June 30, 2011, 12:03:43 am
No, I mean using the databus for I/O
I think that's what ports are for...
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: ralphdspam on June 30, 2011, 12:07:09 am
Yes, I mean connecting an external device to receive I/O read/writes from the Z80.  (From the old 83+BE's, of course)
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: calc84maniac on June 30, 2011, 12:09:18 am
Yes, I mean connecting an external device to receive I/O read/writes from the Z80.  (From the old 83+BE's, of course)
Well, the databus is in an unknown state when an interrupt occurs (because that could happen at any point in an executing program). Of course it will be in a known state when actually doing port outputs and stuff.
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: DrDnar on June 30, 2011, 01:11:18 am
The previous generation of programmers say that the TI-83+ leaves whatever was the last value on the bus. Thus, it's effectively random. In my tests, the ASIC models don't seem to do this.
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: Camdenmil on June 30, 2011, 01:33:39 am
Do you mean newer 83+'s too?
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: DrDnar on June 30, 2011, 03:33:59 am
That's something important to check. Do the newer TI-83+s have the other new ports, too?
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: Quigibo on June 30, 2011, 03:46:50 am
Hmm... somebody needs to test IM 2 with TI-83+SE. If it's always 0xFF, then this might be a useful fact for programs meant to run only on 15MHz calcs.

I know for a fact that the 84+BE has predictable IM2 vectors whereas the 84+SE does not.  This was the major bug I found when I first released Pyoro.
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: calcdude84se on June 30, 2011, 04:03:30 am
In other news, BrandonW has successfully updated the boot code on his TI-84+ to 1.03, making it think it's a Pocket. :D
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: TIfanx1999 on June 30, 2011, 04:20:07 am
Lol, that's pretty funny. :D
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: BrandonW on June 30, 2011, 04:20:36 am
Going from 1.03 to 1.02 is equally as easy. 1.03 is defeated in oh-so-many ways.
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: Lionel Debroux on June 30, 2011, 04:24:01 am
Very interesting :D

@TI: watch this disaster unfold - you've added a protection, and the result, obtained in short order, is not only complete defeat of the protection, but also, additional insight gained into your calculators (e.g. ports 21, 25, 26). Congratulations ;)
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: TIfanx1999 on June 30, 2011, 06:33:04 am
Going from 1.03 to 1.02 is equally as easy. 1.03 is defeated in oh-so-many ways.

Awesome. =) They should really just give up. After all, the community knows their hardware better than they do.
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: Hot_Dog on June 30, 2011, 05:55:36 pm
Thepenguin77, I tested t32.8xp on a Ti-83+ Silver Edition, and it works.

However, I started implementing the ports in Crabcake, and I think I'm doing something wrong because the RAM doesn't unlock.

Here's my code:

Code: [Select]
Is15MhzCalculator:

;Thanks to thepenguin77 for finding out this new method for unlocking RAM.

call FlashUnlockExploit
in a, ($25)
ld (StateOfRam), a
in a, ($26)
ld (StateOfRam + 1), a ;In case the user wants RAM permanently unlocked,
;or in case permanent unlocking causes crashes,
;the old values for these two ports are saved


xor a
out ($25), a
ld a, $FF
out ($26), a

B_CALL $4F3C
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: DrDnar on June 30, 2011, 06:04:04 pm
I'm sure that somewhere in TI's vast vaults is documentation on what ports 0E, 0F, 15, 24, and 2D do. But they'll never tell us without a court order, and they they'd fight it for no good reason.
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: thepenguin77 on June 30, 2011, 06:14:01 pm
Hot_Dog, the only reason that wouldn't work is because flash isn't actually unlocked. So check port (02), port (25h), and port (26h) and make sure that everything looks correct.


DrDnar, don't forget about ports 0Bh and 0Ch.
Title: Re: ThePenguin77 Removes the Last Traces of TI from his Calculator
Post by: Hot_Dog on June 30, 2011, 06:17:29 pm
Oh yeah, I forgot that I shortened BrandonW's routine for using on simply the Ti-83+ BE.  Hence it wasn't "universal" ;D