Register

Search found 606 matches

Return to advanced search

SimonLothar
Tue May 15, 2012 6:14 am
 
Forum: Tutorials & Code Snippets
Topic: Instant syscall implementation (C)
Replies: 13
Views: 46394

I think that all the syscalls in your help file should be documented, there are some that I find interesting The complete documentation of a syscall involves several steps, which can be time-consuming. A very important thing is verification, t. i. writing a little program, testing it on serveral ca...
SimonLothar
Mon May 14, 2012 5:49 am
 
Forum: Released Projects
Topic: NOTEVIEW for Prizm
Replies: 9
Views: 40920

flyingfisch wrote:Have you thought of porting it to the fx9860?
At present I am porting my mini-SDK to fx-9860G/GII/GII-2. As soon as I have reassigned the syscalls, I will try to build NOTEVIEW.G1A.
SimonLothar
Sun May 13, 2012 9:37 pm
 
Forum: Casio fx-9860 SDK
Topic: Casio Basic to SDK
Replies: 65
Views: 150635

unsigned int key; this declares the variable "key" of the type "unsigned int". "unsigned int"-variables cover the range 0..4294967295 (four bytes). "unsigned char"-variables cover the range 0..255 (one byte). In C/C++ the compiler must know how much RAM-space a variable needs. A declaration is nece...
SimonLothar
Sat May 12, 2012 7:57 pm
 
Forum: Casio fx-9860 SDK
Topic: Casio Basic to SDK
Replies: 65
Views: 150635

nagarajan wrote:Is this the only way to get user input?

I dropped a syscall-based line-editor-snippet here
http://www.casiopeia.net/forum/viewtopic.php?f=20&t=1377
SimonLothar
Sat May 12, 2012 7:54 pm
 
Forum: Tutorials & Code Snippets
Topic: Syscall-based line-editor (C, fx-9860)
Replies: 3
Views: 17967

Syscall-based line-editor (C, fx-9860)

syscall 0x08DB is a fairly comfortable line-editor. documented here: http://www.casiopeia.net/forum/downloads.php?view=detail&df_id=72 // instant syscalls (fx-9860) // documented here: // [url]http://www.casiopeia.net/forum/viewtopic.php?f=20&t=1376[/url] #define SCA 0xD201D002 #define SCB 0...
SimonLothar
Sat May 12, 2012 4:49 pm
 
Forum: Tutorials & Code Snippets
Topic: Instant syscall implementation (C)
Replies: 13
Views: 46394

Did you actually research and document all 4000? No. I identified about 950 syscalls on the fx-9860-systems up to now. Some of them are not worth to be documented. And just while I am playing around any list of syscall numbers I should avoid? Yo, ho, ho! ;-) I am on this since January 2008. And I n...
SimonLothar
Sat May 12, 2012 10:42 am
 
Forum: Tutorials & Code Snippets
Topic: Instant syscall implementation (C)
Replies: 13
Views: 46394

Instant syscall implementation (C)

The following code is an example of how to implement a syscall without much effort using the CASIO SDK: (f. i. to check out, if it is of some use, before you include it in your library and headerfiles) After defining some function pointer types every syscall declaration needs two lines. // !!!!!!!!!...
SimonLothar
Fri May 11, 2012 3:48 pm
 
Forum: Tutorials & Code Snippets
Topic: Detect the emulator (C)
Replies: 2
Views: 12040

Does it work for the Prizm, too?
SimonLothar
Fri May 11, 2012 3:42 pm
 
Forum: Casio fx-9860 SDK
Topic: Casio Basic to SDK
Replies: 65
Views: 150635

Is this the only way to get user input? No. F. i. you already saw this: http://www.casiocalc.org/?showtopic=6781 (Though I do not know if the VRAM-address-problem of revolution has been fixed). There are some syscalls, which could be used. Perhaps there are some other libraries available. Scan the ...
SimonLothar
Fri May 11, 2012 1:54 pm
 
Forum: Casio fx-9860 SDK
Topic: Casio Basic to SDK
Replies: 65
Views: 150635

Start to experiment, f. i. implement the dot and the minus, which you will need. Perhaps you read "fx-9860G Libraries.pdf" and try some of the other library functions. It is very important to understand the code, before we proceed. Try to get some C/C++-documentation, if you don't have it already. I...
PreviousNext

Return to advanced search