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 ... 165 166 [167] 168 169 ... 424
2491
News / Re: Incoming OmnomIRC downtime!
« on: April 10, 2011, 07:19:30 am »
Just fixed the bots, didn't realize they were down.

Feel free to highlight me on IRC if they're down for more than 10 or so minutes, there's a good chance I've missed it.

Great, it's all up again :D

2492
ASM / Re: Hexadecimal Assembly Programming
« on: April 10, 2011, 07:02:26 am »
Code: [Select]
EF4045FD
CB00AE21000022D7
8621AC9DEF0A45EF
2E45C948656C6C6F
20776F726C642100

Isn't this supposed to display 'Hello World!'?

I only get the 'H'.

2493
Math and Science / Re: Help With Polynomials
« on: April 10, 2011, 05:56:39 am »
I'm also learning polynomial factorization at school now, and tried it too, but why can you do this:

Quote
First of all, you can factor (x^2-x-12) to (x-4)(x+3).  This gives ((x-4)(x+3))/x)/(x/(x-4)).

I have no idea.

2494
ASM / Variables and a/hl register
« on: April 10, 2011, 05:19:15 am »
I have this code:

Code: [Select]
;Program made by: David Gomes

.nolist
#include "ti83plus.inc"
.list
   .org userMem-2
   .db $BB,$6D
Init:


    b_call(_ClrLCDFull)
        myVar .equ 60
ld a,myVar
ld h,0
ld l,a
b_call(_DispHL)
b_call(_GetKey)
    b_call(_ClrLCDFull)
res 5,(iy+0)             ; Disables 'Done' message
    ld    hl, 0
    ld    (PenCol), hl
    ld    hl, msg
    b_call(_PutS)            ; Display the text
    b_call(_NewLine)
    ret

msg:
    .db "Hello world!", 0
.end
.end

When compiling I get this:

Code: [Select]
Pass one...
myfile.z80:11: warning: Suggest remove extra parentheses around argument
myfile.z80:12: error: Can't recognize 'myVar' as an instruction or macro
myfile.z80:16: warning: Suggest remove extra parentheses around argument
myfile.z80:17: warning: Suggest remove extra parentheses around argument
myfile.z80:18: warning: Suggest remove extra parentheses around argument
myfile.z80:23: warning: Suggest remove extra parentheses around argument
myfile.z80:24: warning: Suggest remove extra parentheses around argument
Pass two...
myfile.z80:13: error: 'myVar' isn't a macro or label
Done

It's supposed to display the number 60 and then after a keypress display "Hello World!". What am I doing wrong with myVar here?

2495
BatLib / Re: BatLib Ideas/Wishlist
« on: April 10, 2011, 05:13:40 am »
How do If's work in Recode?

Code: [Select]
If A=4
Disp "HELLO
End

Is it like that, like in Axe? Or does it require the crappy Then?

2496
BatLib / Re: BatLib/ReCode Examples
« on: April 10, 2011, 05:11:33 am »
I still don't understand how the chaining works; my brain doesn't comprehend the awesome. ;D
What if you leave arguments out of a command?  How does it know to go on to the next command?

That's true, we can't forget any argument, but it makes code much smaller.

Zeda, does it count number of arguments to get to the next command?

2497
OmnomIRC Development / Re: Author glitch in OmnomIRC
« on: April 10, 2011, 05:03:10 am »
Good to know, maybe this should be locked now?

2498
WabbitStudio Software Suite / Re: Run in Wabbitemu
« on: April 10, 2011, 04:59:36 am »
WabbitEmu gets updated pretty often, so what about a shortcut link to wabbit.codeplex.com instead? Just my suggestion :)

That's a good idea, I don't have to deal with the burocracy :D

2499
Miscellaneous / Re: Random YouTube Videos
« on: April 09, 2011, 04:01:35 pm »


What do you think?

2500
General Calculator Help / Re: Give a summary of RAM?
« on: April 09, 2011, 03:37:46 pm »
Quote
When the CPU executes a program, that program is stored in the computer's main memory (also called the RAM or random access memory). In addition to the program, memory can also hold data that is being used or processed by the program. Main memory consists of a sequence of locations. These locations are numbered, and the sequence number of a location is called its address. An address provides a way of picking out one particular piece of information from among the millions stored in memory. When the CPU needs to access the program instruction or data in a particular location, it sends the address of that information as a signal to the memory; the memory responds by sending back the data contained in the specified location. The CPU can also store information in memory by specifying the information to be stored and the address of the location where it is to be stored.

A general text on RAM. Concerning calculator RAM, I'm not your guy.

EDIT: The text, I found it here.

2501
TI Z80 / Re: Axe GUI Library
« on: April 09, 2011, 03:14:06 pm »
UPDATE :D

Here it is, a Windows program (sorry non-Windows guys, I'll try to use Mono later) to create Axe GUI using the library in its current state.

What do you think?

2502
TI Z80 / Re: Dalanian Software
« on: April 09, 2011, 06:28:18 am »
Nice, is there a way to make it open only when the program is first ran? Otherwise, it's quite boring to wait to play :P

2503
Web Programming and Design / Re: Color O.O (Contra Homepage)
« on: April 09, 2011, 06:26:59 am »
.co.cc offers hosting?

I don't think so, I prefer to use 000webhost together with .co.cc.

2504
The Axe Parser Project / Re: Features Wishlist
« on: April 09, 2011, 05:23:25 am »
Quigibo, I didn't read the whole thing, but we can use pi in Axe?

2505
TI Z80 / Re: Axe GUI Library
« on: April 09, 2011, 05:22:46 am »
In the future it will expand... :)

I also hope so.

For now, we have merged both projects here.

Pages: 1 ... 165 166 [167] 168 169 ... 424