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.


Topics - bored_student

Pages: [1]
1
ASM / Menu hook
« on: October 16, 2013, 12:05:41 pm »
I have a question.
Can menu hooks be used to block or hide certain menu entries of the TI-OS menus.

2
Axe / help with my Axiom
« on: October 05, 2013, 06:11:34 am »
Hi
I'm making an Axiom for Axe and something with the REP_NEXT macro doesn't work
Code: [Select]
.dw AXM_4_END
 .db AXM_NONAPP
 .db tok_Scan,0
 .db AXM_SUB
 .db AXM_2ARGS
 .org 0
 ...here comes some asm-code
 ex de,hl
 REP_NEXT ;this is .db $7F / .org $-1
 ld hl,_4entry
 ex (sp),hl
 push hl ;jump to (hl)
 ret
_4entry:
 ...here comes some code again
 ret

 .org $+1 ;I though you should increase the program origin to match the real size
AXM_4_END:

.dw AXM_END

after this code there are the token replacements
they don't work in this case but when I leave the REP_NEXT and the .org $+1 they work without any problems

3
Axe / how to make a tutorial
« on: September 18, 2013, 05:52:31 am »
I thougth of making an tutorial for how to get an input string in Axe without the use of input()
and I don't know if there are any specifications of  how to make it.
sadly there isn't a tutorial about how to make a tutorial  ::)

PS: I don't even know if this is the correct Section to ask this question. I'm sorry if I made something wrong

4
Art / need for atomic mushroom cloud
« on: September 13, 2013, 12:54:43 pm »
Hi I need an atomic mushroom cloud animation for my game.

Because I'm not good with drawing  :-\ I feel free to ask here

the animation should be 2-4 frames and 64x64 pixles black white (no grayscale)
Thought it may be smaller  ;)
By the way there is no need for the cloud to rise out of the ground

Thank you for your try in advance
and of course I will credit you in my game if I use your sprites

5
ASM / Some basic questions
« on: November 04, 2012, 01:51:33 pm »
Yeah I decided to learn ASM so I have read a lot but some questions still remained:  ???
1. What compiler/assembler should I use
  TI recommens the ZDS but I think it's a bit environment and I only need a compiler with documentation
2. Since the code depends on the compiler I need some documentation (not the TI hardware and routines guides
  but the basic commands like "call" or "ld"
3. Some questions that will appear when I start making my first errors :(

6
Axe / static vars
« on: October 31, 2012, 12:22:17 pm »
I wanted to make my program code more clear.
So I decided to use static vars that replace some L1+... commands:
example:
Code: [Select]
L1+12 -> GDB0XVAL
L1+14 -> GDB0YVAL
...
X -> {GDB0XVAL}R
Y -> {GDB0YVAL}R

Is this slower than this:
Code: [Select]
X -> {L1+12}R
Y -> {L1+14}R
or is it the same after compiling

7
Introduce Yourself! / Hello
« on: October 21, 2012, 02:02:25 pm »
Hi there

I'm a student in Germany and we have got a TI-83 Plus at school.
I first visited this website because of Axe.
Now I've decided to enter Omnimaga.

Pages: [1]