Author Topic: zStart - an app that runs on ram clears  (Read 292829 times)

0 Members and 3 Guests are viewing this topic.

Offline Yeong

  • Not a bridge
  • LV12 Extreme Poster (Next: 5000)
  • ************
  • Posts: 3739
  • Rating: +278/-12
  • Survivor of Apocalypse
    • View Profile
Re: zStart - an app that runs on ram clears
« Reply #480 on: October 24, 2011, 09:15:07 am »
Let's see which one does it first: DCS7 or zStart XD
Sig wipe!

Offline Sorunome

  • Fox Fox Fox Fox Fox Fox Fox!
  • Support Staff
  • LV13 Extreme Addict (Next: 9001)
  • *************
  • Posts: 7920
  • Rating: +374/-13
  • Derpy Hooves
    • View Profile
    • My website! (You might lose the game)
Re: zStart - an app that runs on ram clears
« Reply #481 on: October 24, 2011, 10:31:51 am »
Feature Wishlist:
Compatibility of the Homerun hook with Grammer progs (of course if we have the Grammer app).
This would be very great :D
I was just about to request that as a feature.... :)

THE GAME
Also, check out my website
If OmnomIRC is screwed up, blame me!
Click here to give me an internet!

Offline Hayleia

  • Programming Absol
  • Coder Of Tomorrow
  • LV12 Extreme Poster (Next: 5000)
  • ************
  • Posts: 3367
  • Rating: +393/-7
    • View Profile
Re: zStart - an app that runs on ram clears
« Reply #482 on: October 24, 2011, 12:03:08 pm »
I was just about to request that as a feature.... :)
:w00t: first time I ninja someone !!!

Let's see which one does it first: DCS7 or zStart XD
The problem is not who does it first, because Xeda can do it by herself. The problem are the conflicts there will be. And as (in my case) I prefer zStart's hooks, I'd like it to run Grammer progs.
I own: 83+ ; 84+SE ; 76.fr ; CX CAS ; Prizm ; 84+CSE
Sorry if I answer with something that seems unrelated, English is not my primary language and I might not have understood well. Sorry if I make English mistakes too.

click here to know where you got your last +1s

Offline thepenguin77

  • z80 Assembly Master
  • LV10 31337 u53r (Next: 2000)
  • **********
  • Posts: 1594
  • Rating: +823/-5
  • The game in my avatar is bit.ly/p0zPWu
    • View Profile
Re: zStart - an app that runs on ram clears
« Reply #483 on: October 24, 2011, 02:57:38 pm »
If xeda will give me an entry point, I'd be glad to do it.

However, in the grand scheme of things, I'd like to see Grammer get a little bigger before I add support for it. Like I said, I'm pretty low on space and adding in options like this takes a minimum of 100 bytes.


One option that I do like would be to somehow use the "Run on zStart" option to add in a hook to make it work. I don't see that being very difficult.
zStart v1.3.013 9-20-2013 
All of my utilities
TI-Connect Help
You can build a statue out of either 1'x1' blocks or 12'x12' blocks. The 1'x1' blocks will take a lot longer, but the final product is worth it.
       -Runer112

Offline Freyaday

  • The One And Only Serial Time Killing Catboy-Capoeirista-Ballerino
  • LV10 31337 u53r (Next: 2000)
  • **********
  • Posts: 1970
  • Rating: +128/-15
  • I put on my robe and pixel hat...
    • View Profile
Re: zStart - an app that runs on ram clears
« Reply #484 on: October 24, 2011, 05:44:28 pm »
can we get the ability to auto-set other defaults? Like how imaginary numbers are dealt with?
In other news, Frey continues kicking unprecedented levels of ass.
Proud member of LF#N--Lolis For #9678B6 Names


I'm a performer at heart; I stole it last week.
My Artwork!

Offline Xeda112358

  • they/them
  • Moderator
  • LV12 Extreme Poster (Next: 5000)
  • ************
  • Posts: 4704
  • Rating: +719/-6
  • Calc-u-lator, do doo doo do do do.
    • View Profile
Re: zStart - an app that runs on ram clears
« Reply #485 on: October 24, 2011, 05:44:39 pm »
In the next version, I will add in these entries:
4085h - This will execute the program named in OP1 if it is a Grammer program.
408Bh - This will check if the program named in OP1 is a Grammer program. It loads in a small call at 8101h, too. It returns nz if it isn't a Grammer program, z if it is (it takes care of checking if it is archived or not)
4088h - This will take care of loading the var to RAM if needed, then it will begin interpreting the code.

So it will probably be more useful to do
Code: [Select]
   call 408Bh
   jr nz,NotGrammerProg
     <<Take care of stuff if it needs to be taken care of>>
     jp 4088h
NotGrammerProg:
   <<Rest of code>>
Will this be helpful, or did you mean something else? And are there any other entries I should add?

Offline thepenguin77

  • z80 Assembly Master
  • LV10 31337 u53r (Next: 2000)
  • **********
  • Posts: 1594
  • Rating: +823/-5
  • The game in my avatar is bit.ly/p0zPWu
    • View Profile
Re: zStart - an app that runs on ram clears
« Reply #486 on: October 24, 2011, 06:17:00 pm »
That looks good to me. I don't even need to 4088h routine. But, the more the merrier I guess.
zStart v1.3.013 9-20-2013 
All of my utilities
TI-Connect Help
You can build a statue out of either 1'x1' blocks or 12'x12' blocks. The 1'x1' blocks will take a lot longer, but the final product is worth it.
       -Runer112

Offline Xeda112358

  • they/them
  • Moderator
  • LV12 Extreme Poster (Next: 5000)
  • ************
  • Posts: 4704
  • Rating: +719/-6
  • Calc-u-lator, do doo doo do do do.
    • View Profile
Re: zStart - an app that runs on ram clears
« Reply #487 on: October 24, 2011, 06:20:44 pm »
Cool :) Yeah, it happens to be inline, anyway (the code there looks like "call CompatCall \ jp SelectedProg"

Offline epic7

  • Chopin!
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2200
  • Rating: +135/-8
  • I like robots
    • View Profile
Re: zStart - an app that runs on ram clears
« Reply #488 on: October 29, 2011, 06:04:59 pm »
If it runs on ram clears, will it clear my ram? Cuz I dont want that :P

Also, would Dcs7 screw it up?
« Last Edit: October 29, 2011, 06:12:31 pm by epic7 »

Offline mrmprog

  • LV7 Elite (Next: 700)
  • *******
  • Posts: 559
  • Rating: +35/-1
    • View Profile
Re: zStart - an app that runs on ram clears
« Reply #489 on: October 29, 2011, 06:30:20 pm »
If it runs on ram clears, will it clear my ram? Cuz I dont want that :P

Also, would Dcs7 screw it up?
Run on ram clears means that it will activate its settings/run a program/whatever you want when your ram clears.

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: zStart - an app that runs on ram clears
« Reply #490 on: October 30, 2011, 01:06:05 am »
Also, would Dcs7 screw it up?
Yes, but you can set Doors up not to.  Just go to Doors' options and uncheck the "hooks" option.  If you don't, it won't cause anything bad to happen, just that some of zstart's features won't work.  Oh, and I believe that the statrup picture will never work with Doors because DoorsCS acts stupid.
« Last Edit: October 30, 2011, 01:06:32 am by ztrumpet »

Offline epic7

  • Chopin!
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2200
  • Rating: +135/-8
  • I like robots
    • View Profile
Re: zStart - an app that runs on ram clears
« Reply #491 on: October 30, 2011, 01:30:50 pm »
What do the hooks do?

Offline Hayleia

  • Programming Absol
  • Coder Of Tomorrow
  • LV12 Extreme Poster (Next: 5000)
  • ************
  • Posts: 3367
  • Rating: +393/-7
    • View Profile
Re: zStart - an app that runs on ram clears
« Reply #492 on: October 30, 2011, 01:34:22 pm »
What do the hooks do?
Hooks in general or DCS' hooks ?

   Hooks in general are something that you install "permanently" in your calc (until the next RAM Clear (except if you have zStart (no more parenthesis, I promise))).
   DCS' hooks for example allow you to run archived-asm-programs-that-need-a-shell from the homescreen, as if they were unarchived-basic-programs.
« Last Edit: October 30, 2011, 01:34:40 pm by Hayleia »
I own: 83+ ; 84+SE ; 76.fr ; CX CAS ; Prizm ; 84+CSE
Sorry if I answer with something that seems unrelated, English is not my primary language and I might not have understood well. Sorry if I make English mistakes too.

click here to know where you got your last +1s

Offline epic7

  • Chopin!
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2200
  • Rating: +135/-8
  • I like robots
    • View Profile
Re: zStart - an app that runs on ram clears
« Reply #493 on: October 30, 2011, 01:36:34 pm »
I like that feature...

Ill try zStart and see which one I like better :P

Offline Hayleia

  • Programming Absol
  • Coder Of Tomorrow
  • LV12 Extreme Poster (Next: 5000)
  • ************
  • Posts: 3367
  • Rating: +393/-7
    • View Profile
The game, just to see if someone loses
« Reply #494 on: October 30, 2011, 01:37:25 pm »
Ill try zStart and see which one I like better :P
zStart runs the program a lot faster and when quitting, it only writebacks if needed. But it has problems with the "Stop" token in basic.
« Last Edit: October 30, 2011, 01:38:03 pm by Hayleia »
I own: 83+ ; 84+SE ; 76.fr ; CX CAS ; Prizm ; 84+CSE
Sorry if I answer with something that seems unrelated, English is not my primary language and I might not have understood well. Sorry if I make English mistakes too.

click here to know where you got your last +1s