0 Members and 3 Guests are viewing this topic.
Quote from: graphmastur on November 11, 2010, 09:41:33 pmno, because IIRC, you can't get a screenshot while a program is running. I'm sure you could if you had a hook for it or something, and sent whatever was in memory, but that would cause a delay in your program speed.You could probably get a BASIC program to send an animated screenshot because the OS still has full control over the calculator. There's no way you're getting a screenshot from an ASM program without a lot of fancy interrupt work, though.
no, because IIRC, you can't get a screenshot while a program is running. I'm sure you could if you had a hook for it or something, and sent whatever was in memory, but that would cause a delay in your program speed.
HoMM: [==--------] Project 'resumed': I'm suffering overwhelming new ideas being popped up in my dreams :PtiDE: [----------] Explored and understood the main part of the code: just started writing a Tokenizer.
and perhaps even animated screens? that would be too cool!
Quote from: LordConiupiter on November 12, 2010, 01:39:54 pmand perhaps even animated screens? that would be too cool!Exactly, and already stored as GIF files.That's why 3rd-party stuff rocks
Yeah, except for Quadratic Solvers
Oh, I'm actually almost done with WFRNG OS. Does anyone have a routine to display a number in decimal?
char* p = ptr_to_end_of_string;*p = 0;do *--p = (N % 10) + '0';while(N /= 10);printf(p);
Quote from: SirCmpwn on November 12, 2010, 04:45:20 pmYeah, except for Quadratic Solvers I can't wait to make a quadratic solver for KOS!