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

Pages: 1 2 [3]
31
TI-BASIC / My Digital Clock
« on: March 23, 2012, 10:23:17 am »
Ok, I know, it suck, but here it is

32
ASM / Ok, I'm a noob
« on: March 23, 2012, 09:57:50 am »
Ok, here is what I tried:

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:
Conditional:
      ld a,3
      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
txtHell:
.db "7",0
IsThree
 ld a,0
      ld (CURCOL),a
      ld a,0
      ld (CURROW),a
      ld hl,txtHel
      B_CALL(_PutS)
      ret
txtHel:
.db "3",0
IsNoneOfThese
 ld a,0
      ld (CURCOL),a
      ld a,0
      ld (CURROW),a
      ld hl,txtHello
      B_CALL(_PutS)
      ret
txtHello:
      .db "Hello World",0
.end

and it didn't work, so i also tried this:

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:
Conditional:
      ld a,3
      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
txtHello:
      .db "Hello World",0
txtHel:
.db "3",0
txtHell:
.db "7",0
.end

TASM (i haven't tried with the doors CS DSK) always gives an error: unknow command: B_CALL(_PutS)

33
Introduce Yourself! / Hi, I'm stevon8ter
« on: March 22, 2012, 12:27:55 pm »
Hi there, my name is stevon8ter and I'm a new member. I've allready read some topics and now I'm joining.

I know this is something yoy guys allready talked about a lot but it's still my problem:

TASM + devpac8x/binpac8x isn't working.

devpac8x doesn't work cause i have 64 bit.
But what about binpac8x ?
I allready installed python, and now i don't really know what my batch file should be.

Greetings, stevon8ter

PS: sorry for my bad english, I'm from Belgium :P

Pages: 1 2 [3]