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

Pages: 1 ... 44 45 [46] 47 48
676
TI Z80 / Re: TI-Concours Snake games
« on: March 23, 2012, 11:58:29 am »
do you mean with apples like apples to eat? :P

677
TI Z80 / Re: TI-Concours Snake games
« on: March 23, 2012, 11:51:55 am »
Ok, it looks nice. All snake games have something to eat, yours has a little "portal"-like thing, it's really cool to see something else for a change

678
TI Z80 / Re: Snake (Zeda)
« on: March 23, 2012, 11:34:22 am »
Ah, just post it, much worse than my games/programs isn't possible :P

And I wanna try all the snake games. I'm going to download them and play for as long as possible :P

679
TI-BASIC / Re: My Digital Clock
« on: March 23, 2012, 11:18:34 am »
Can't I lock it?

680
ASM / Re: Ok, I'm a noob
« on: March 23, 2012, 11:02:16 am »
Ok, thanks, but as I allready mentioned, I'm a N00B :P

But I'll try to do the whole 28days.

But usually I like it to get a bunch of examples and then some explanation with it.

Like in this one http://www.arasian.com/support/education/tutorial&t=2&s=9

Euhm, guys, what's the best vti to use to test my progs?


Euhm, other question: why does this gives a RAM clear?
Code: [Select]
.NOLIST
#define   EQU   .equ
#define   equ   .equ
#define   END   .end
#define   end   .end
#include "ti83plus.inc"
.LIST

     .org 9D93h
     .db $BB,$6D
StartProg:
B_CALL(_ClrLCDFull)

GetKeyLoop:
     B_CALL(_GetKey)
     cp k1
     jp z,Numb1
     cp k3
     jp z,Numb3
     cp k7
     jp z,Numb7
     jp GetKeyLoop

Conditional:
      cp 7
      jp z,IsSeven
      cp 3
      jp z,IsThree
      jp nz,IsNoneOfThese

IsSeven
ld a,0
      ld (CURCOL),a
      ld a,0
      ld (CURROW),a
      ld hl,txtHell
      B_CALL(_PutS)
      ret

IsThree
 ld a,0
      ld (CURCOL),a
      ld a,0
      ld (CURROW),a
      ld hl,txtHel
      B_CALL(_PutS)
      ret

IsNoneOfThese
 ld a,0
      ld (CURCOL),a
      ld a,0
      ld (CURROW),a
      ld hl,txtHello
      B_CALL(_PutS)
      ret

txtHell:
.db "7",0

txtHel:
.db "3",0

txtHello:
      .db "Hello World",0

Numb1:
ld a,1

Numb3:
ld a,3

Numb7:
ld a,7

.end

681
ASM / Re: Ok, I'm a noob
« on: March 23, 2012, 10:51:32 am »
Ok, and what if I wanted an user-input that asks for a number? What B_CALL should it be? Or is it something else?

Ok, in asmin28days, they're talking about this

Code: [Select]
.module    ConvDec8
ConvDec8:
    LD    C, 0

_Loop:
    CALL  GetChar
    CCF             ; End if no more characters
    RET   NC

    SUB   '0'       ; Throw out all characters below '0'
    JR    C, _Check

    CP    10        ; Throw out all characters above '9'
    CCF
    RET   C

    LD    D, A       ; Save value in D
    LD    A, C       ; Load running total
    CP    26        ; Halt if there would be an overflow (260+)
    JP    NC, Ungetc ; Return gotten character

    LD    E, C       ; Save current number in case of overflow
    ADD   A, A       ; Multiply by 10
    ADD   A, A
    ADD   A, C
    ADD   A, A
    ADD   A, D       ; Add gotten character

    LD    C, A       ; Halt if overflow (256 to 259)
    JR    NC, _Loop

    LD    C, E
    JP    Ungetc

_Check:
    CP    ' ' - '0' ; If a space is encountered exit without error
    RET   Z
    SCF
    RET


but in what register is it saved?

Ans I get an error: with : GetChar  and  Ungetc

682
TI-BASIC / Re: My Digital Clock
« on: March 23, 2012, 10:44:01 am »
Ow, sorry, I'm new and don't know much about the stuff here, i'll remember it next time

683
TI-BASIC / Re: My Digital Clock
« on: March 23, 2012, 10:41:03 am »
Thanks, I posted it there, so this one, can it be deleted?

And thank you.

684
TI Z80 / My Digital Clock
« on: March 23, 2012, 10:40:26 am »
This is my digital clock. I made it with basics and finally descided to put it on this site. It refreshes every 1 second so you don't have to do it yourself.
In the program itself is a little menu, help-file included at option 4, help. You also can set you're own time and date.

686
TI-BASIC / Re: My Digital Clock
« on: March 23, 2012, 10:29:58 am »
Ok, in what forum should it be?

And here it is:

This is my digital clock. I made it with basics and finally descided to put it on this site. It refreshes every 1 second so you don't have to do it yourself.
In the program itself is a little menu, help-file included at option 4, help.

687
TI-BASIC / My Digital Clock
« on: March 23, 2012, 10:23:17 am »
Ok, I know, it suck, but here it is

688
TI Z80 / Re: Actually this is my TI-concours entry :)
« on: March 23, 2012, 10:22:14 am »
Ok, then I'll do that :)

Does anyone still has the version or a link to it?

689
ASM / Re: Ok, I'm a noob
« on: March 23, 2012, 10:21:18 am »
Ok, I'll try, and does it has to be in the TI83 inc file or in the sourcefile?

Ok, i've put it in the included file, my conclusion: it was there, but in b_call en not B_CALL :P

690
Grammer / Re: Grammer Font Request
« on: March 23, 2012, 09:59:04 am »
Ow, i see, and the char like number 1 is emty, and that are the ones I can file however I want?

Pages: 1 ... 44 45 [46] 47 48