Author Topic: TI-Boy SE  (Read 222624 times)

0 Members and 2 Guests are viewing this topic.

Offline calc84maniac

  • eZ80 Guru
  • Coder Of Tomorrow
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2912
  • Rating: +471/-17
    • View Profile
    • TI-Boy CE
Re: TI-Boy SE
« Reply #720 on: October 18, 2010, 04:38:35 pm »
It is actually not possible to run as an App at the moment. I assemble into a .rom file and run it in wabbitemu :)
"Most people ask, 'What does a thing do?' Hackers ask, 'What can I make it do?'" - Pablos Holman

Offline qazz42

  • LV9 Veteran (Next: 1337)
  • *********
  • Posts: 1130
  • Rating: +30/-12
  • hiiiiiiiii
    • View Profile
Re: TI-Boy SE
« Reply #721 on: October 18, 2010, 04:39:59 pm »
O_o wow, that sounds epic

Offline ztrumpet

  • The Rarely Active One
  • CoT Emeritus
  • LV13 Extreme Addict (Next: 9001)
  • *
  • Posts: 5712
  • Rating: +364/-4
  • If you see this, send me a PM. Just for fun.
    • View Profile
Re: TI-Boy SE
« Reply #722 on: October 18, 2010, 05:13:49 pm »
Nice!  Good job! ;D

SirCmpwn

  • Guest
Re: TI-Boy SE
« Reply #723 on: October 19, 2010, 10:02:59 pm »
LOL a ROM file XD
Let's all install TI-Boy OS ;D

Offline ztrumpet

  • The Rarely Active One
  • CoT Emeritus
  • LV13 Extreme Addict (Next: 9001)
  • *
  • Posts: 5712
  • Rating: +364/-4
  • If you see this, send me a PM. Just for fun.
    • View Profile
Re: TI-Boy SE
« Reply #724 on: October 19, 2010, 10:05:17 pm »
Let's all install TI-Boy OS ;D
lol :P
Sounds like a good idea to me.
"But [insert name of math teacher here], I can't solve this equation as I replaced my OS with Super Mario Bros." :P

Offline tloz128

  • LV6 Super Member (Next: 500)
  • ******
  • Posts: 324
  • Rating: +58/-6
  • I feel asleep.
    • View Profile
Re: TI-Boy SE
« Reply #725 on: October 20, 2010, 12:01:20 am »
Sorry if you already mentioned this somewhere, but how is compatibility coming along for those of us with just 48k of memory (if it's being planned at all, that is)?
Naaa... Na Nah Na Nana Na Nah... Hey Jude!

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55943
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Re: TI-Boy SE
« Reply #726 on: October 20, 2010, 12:12:42 am »
It is currently in the works. :)

In fact the screenshots he posted are from that version. It's coming along slowly, though. I assume it must be a major hassle to get to work right on those models. X.x

I wonder how different is the speed...

Offline calc84maniac

  • eZ80 Guru
  • Coder Of Tomorrow
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2912
  • Rating: +471/-17
    • View Profile
    • TI-Boy CE
Re: TI-Boy SE
« Reply #727 on: October 20, 2010, 12:44:24 am »
Speed should be faster in general, if the cpu core optimizations say anything. I probably could have written the original to run on 48kb, if only I knew they existed at the time. Well... actually, it would have been a hassle to not cause a RAM clear because I would be using all of the 48kb. But in the new version I am going to save the RAM to Flash, so it shouldn't be much of an issue :)
"Most people ask, 'What does a thing do?' Hackers ask, 'What can I make it do?'" - Pablos Holman

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55943
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Re: TI-Boy SE
« Reply #728 on: October 20, 2010, 12:57:49 am »
Will it have to garbage collect often?

Offline calc84maniac

  • eZ80 Guru
  • Coder Of Tomorrow
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2912
  • Rating: +471/-17
    • View Profile
    • TI-Boy CE
Re: TI-Boy SE
« Reply #729 on: October 20, 2010, 01:02:43 am »
Will it have to garbage collect often?
Not at all. The storage area is temporary, and outside the filesystem. The OS keeps a 64KB "swap" sector of Flash free for backing up other sectors before erasing them. Since I'm not doing any archiving or unarchiving during the emulation, this backup of RAM will be untouched until I restore it after emulation.
"Most people ask, 'What does a thing do?' Hackers ask, 'What can I make it do?'" - Pablos Holman

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55943
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Re: TI-Boy SE
« Reply #730 on: October 20, 2010, 02:03:32 am »
Ah ok good. I didn't knew about that 64 KB area :D
« Last Edit: October 20, 2010, 02:03:48 am by DJ Omnimaga »

Offline calc84maniac

  • eZ80 Guru
  • Coder Of Tomorrow
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2912
  • Rating: +471/-17
    • View Profile
    • TI-Boy CE
Re: TI-Boy SE
« Reply #731 on: October 20, 2010, 03:20:11 am »
Actually, BrandonW has now informed me of another 64KB area on the 83+SE and up that is never really used by the OS. I'll probably use this instead, because

1) It is at a constant location, unlike the swap sector.
2) This sector is almost never used, whereas the swap sector is used a ton of times by the OS. So, this is a lot less likely to help TI kill your flash.
"Most people ask, 'What does a thing do?' Hackers ask, 'What can I make it do?'" - Pablos Holman

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55943
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Re: TI-Boy SE
« Reply #732 on: October 20, 2010, 04:39:06 am »
:O

Nice :D.

Offline JustCause

  • CoT Emeritus
  • LV8 Addict (Next: 1000)
  • *
  • Posts: 810
  • Rating: +115/-5
    • View Profile
Re: TI-Boy SE
« Reply #733 on: October 20, 2010, 08:57:30 am »
Ooh! New dithering mode is niiiiiiice. I want one.

Also, LEVEL UP! *JustCause is now level 3*
See you, space cowboy...

Offline Yeong

  • Not a bridge
  • LV12 Extreme Poster (Next: 5000)
  • ************
  • Posts: 3739
  • Rating: +278/-12
  • Survivor of Apocalypse
    • View Profile
Re: TI-Boy SE
« Reply #734 on: October 20, 2010, 08:58:10 am »
Gratz! :D
Sig wipe!