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

Pages: 1 ... 84 85 [86] 87 88 ... 424
1276
Axe / Re: Send data using CMD
« on: May 29, 2011, 09:17:46 am »
I actually remember than NDless 1.1 could be installed with a bat file, so why not?

1277
Miscellaneous / Zeda's Last Day Around
« on: May 29, 2011, 06:27:55 am »
Today is May 29th, meaning Zeda's College is over and she won't come back till September, meaning there won't be BatLib updates for a while :(

She said she wouldn't come here for a while (and she already did) so we didn't miss her so much...

I hope she can handle a few months without Internet :/ (ack, this sucks)

1278
News / Re: How to crash a TI-Nspire CX in 5 seconds
« on: May 29, 2011, 06:21:21 am »
Hum, this most certainly is bad. So it's an older bug TI didn't fix? :/

Also, the video is private, can I be invited to see it DJ?

1279
ASM / Re: Memory Checker - My first ASM program
« on: May 28, 2011, 04:29:03 pm »
And don't forget the header :)

Looking great so far. As a suggestion, how about calculating the actual amount of max RAM? It's not always 24,576 bytes. I think there's a pointer with a certain value that you subtract $9D95 from to get the amount of RAM the user could potentially use. Forgot what it was though.

I was told in Cemetech it was always 24756 :S And the header is DCS7 only now already.

1280
Miscellaneous / Re: New calculator site by annoyingorange
« on: May 28, 2011, 03:25:34 pm »
Yeah, I would really recommend starting a blog or something similar if you would like your own website. Making a "forum" (on webs.com no less) is just all around a waste of time. Look into Google's Blogger service, sign up, and start writing away. You won't make anyone angry with that (unless you call it Omnimaga again)

Welcome to the forums D, you should Introduce Yourself here!

1281
The Axe Parser Project / Re: Axe Parser
« on: May 28, 2011, 03:23:29 pm »
Well, my program which uses a few /256 is fine, but oh wait 16/16 Division, so it's not a problem, most of mine are 8/16. Still bad, I really hope the next version is 1.0.0 bugless :D

1282
The project topics are placed in the Web Programming and Design section.

http://ourl.ca/11277
http://ourl.ca/10576
http://ourl.ca/10420

What's next, A-Sign? Online Application signer? :P

1283
ticalc.org has now put the file up on their site.

Yay, has Eeems uploaded it too?
* Scout goes check.

1284
OmnomIRC Development / Re: OmnomIRC not sending data through to IRC
« on: May 28, 2011, 03:20:23 pm »
This seems to have been fixed, time to save the topic again?

1285
Nice Runer112, cool you keep us updated :D

Also, is there a chance this can be released with Axe?

1286
Axe / Re: 16*16 sprite editor?
« on: May 28, 2011, 03:17:43 pm »
If you want to do it on a computer, you can as well use TokenIDE's Hex Sprite Editor.

Or draw sprites by hand :P

1287
ASM / Re: Memory Checker - My first ASM program
« on: May 28, 2011, 03:12:20 pm »
I made some updates, what do you think?

Code: [Select]
; Program Name: Memory Checker
; Author: David Gomes
; Version: 0.2
; Written for Doors CS 7.0 and higher
.nolist
#include "ti83plus.inc"
#include "dcs7.inc"
.list
.org progstart
.db $BB,$6D
Init:
  B_CALL (_ClrLCDFull)
 
  set textWrite,(IY + sGrFlags)
  set fracDrawLFont,(IY + fontFlags)
 
  ld a,1
  ld (penCol), a
  ld (penRow), a
  ld hl,Title
  B_CALL (_VPutS)
 
  ld h,0
  ld l,9
  ld d,95
  ld e,9
  ld a,1
  call fastline
 
  res fracDrawLFont,(IY + fontFlags)
 
  ld a,10
  ld (penRow),a
  ld a,1
  ld (penCol),a
  B_CALL (_memchk)
  call VDispHL
 
  ld a,17
  ld (penRow),a
  ld a,1
  ld (penCol),a
  ld hl,OutOf
  B_CALL (_VPutS)
 
  ld a,24
  ld (penRow),a
  ld a,1
  ld (penCol),a
  ld hl,24756
  call VDispHL
 
  call iFastCopy
  B_CALL (_GetKey)
 
  res textWrite,(IY + sGrFlags)
 
  ret
 
Title:
  .db "Memory Checker",0

OutOf:
  .db "out of",0

Added an "about" by the way:

Code: [Select]
; Program Name: Memory Checker
; Author: David Gomes
; Version: 0.2
; Written for Doors CS 7.0 and higher
.nolist
#include "ti83plus.inc"
#include "dcs7.inc"
.list
.org progstart
.db $BB,$6D
Init:
  B_CALL (_ClrLCDFull)
 
  set textWrite,(IY + sGrFlags)
  set fracDrawLFont,(IY + fontFlags)
 
  ld a,1
  ld (penCol), a
  ld (penRow), a
  ld hl,Title
  B_CALL (_VPutS)
 
  ld h,0
  ld l,9
  ld d,95
  ld e,9
  ld a,1
  call fastline
 
  res fracDrawLFont,(IY + fontFlags)
 
  ld a,10
  ld (penRow),a
  ld a,1
  ld (penCol),a
  B_CALL (_memchk)
  call VDispHL
 
  ld a,17
  ld (penRow),a
  ld a,1
  ld (penCol),a
  ld hl,OutOf
  B_CALL (_VPutS)
 
  ld a,24
  ld (penRow),a
  ld a,1
  ld (penCol),a
  ld hl,24756
  call VDispHL
 
  ld a,57
  ld (penRow),a
  ld a,1
  ld (penCol),a
  ld hl,MadeBy
  B_CALL (_VPutS)
 
  call iFastCopy
  B_CALL (_GetKey)
 
  res textWrite,(IY + sGrFlags)
 
  ret
 
Title:
  .db "Memory Checker",0

OutOf:
  .db "out of",0
 
MadeBy:
  .db "by David Gomes",0

1288
TI-Nspire / Re: [WIP] BlockBreaker Nspire (Lua)
« on: May 28, 2011, 03:08:06 pm »
Woo! This is looking great, nice job :D

1289
News / Re: Omnimaga adds topic sharing widget on forums
« on: May 28, 2011, 08:56:43 am »
I just twitted this topic =)

1290
ASM / Memory Checker - My first ASM program
« on: May 28, 2011, 07:31:32 am »
I finished my first useful ASM program:

Code: [Select]
; Program Name: Memory Checker
; Author: David Gomes
; Version: 0.1
; Written for Doors CS 7.0 and higher
.nolist
#include "ti83plus.inc"
#include "dcs7.inc"
.list
   .org userMem-2
   .db $BB,$6D
Init:
  B_CALL (_ClrLCDFull)
 
  set textWrite,(IY + sGrFlags)
  set fracDrawLFont,(IY + fontFlags)
 
  ld a,1
  ld (penCol), a
  ld a,1
  ld (penRow), a
  ld hl,Title
  B_CALL (_VPutS)
 
  ld h,0
  ld l,9
  ld d,95
  ld e,9
  ld a,1
  call fastline
 
  res fracDrawLFont,(IY + fontFlags)
 
  ld a,10
  ld (penRow),a
  ld a,1
  ld (penCol),a
  B_CALL (_memchk)
  call VDispHL
 
  ld a,17
  ld (penRow),a
  ld a,1
  ld (penCol),a
  ld hl,OutOf
  B_CALL (_VPutS)
 
  ld a,24
  ld (penRow),a
  ld a,1
  ld (penCol),a
  ld de,24756
  ld h,d
  ld l,e
  call VDispHL
 
  call iFastCopy
  B_CALL (_GetKey)
 
  ret
 
Title:
  .db "Memory Checker",0

OutOf:
  .db "out of",0

It only works in DoorsCS7 as it was written for it. It displays the free RAM and the total RAM. So if your free RAM is 11000 it says:

11000
out of
24576

I will be adding more stuff to it as I learn more ASM. What do you think?

Pages: 1 ... 84 85 [86] 87 88 ... 424