Post Reply 
Emu48 Javascript ?
02-04-2018, 08:07 PM (This post was last modified: 02-04-2018 08:10 PM by sunhp.)
Post: #41
RE: Emu48 Javascript ?
(02-04-2018 03:33 PM)Eric Rechlin Wrote:  Very impressive. I'm surprised to see performance is at par with the actual calculator, even on my several-year-old computer!

Support for showing annunciators and using the keyboard would be nice, too, if possible.

Also, feel free to use the emulator image that I made for Emu48, if you want something a bit sharper:

[Image: b2zoFIa.png]

Thank you Eric I appreciate this !
I put sources on Github to pass the torch and I really think it should be very easy to build better versions , btw my main loop is so horrible :

while( 1 )
{
#if emscripten
currentTime_emu = currentTime;
do {
emulator_run();
currentTime_emu = SDL_GetTicks() - currentTime;
}
while (currentTime_emu < 2);
#else
emulator_run();
#endif

if (currentTime > lastTime_timer2 + delay_timer2) {

lastTime_timer2 = currentTime;
true_speed_proc();
}

if (currentTime > lastTime_timer1 + delay_timer1) {
lastTime_timer1 = currentTime;
display_update();
}

if (currentTime > lastTime_timer3 + delay_timer3) {
lastTime_timer3 = currentTime;
timer1_update();
}

if (currentTime > lastTime_timer5 + delay_timer5) {
lastTime_timer5 = currentTime;
display_show();
}
}
Visit this user's website Find all posts by this user
Quote this message in a reply
02-04-2018, 08:10 PM (This post was last modified: 02-04-2018 08:11 PM by sunhp.)
Post: #42
RE: Emu48 Javascript ?
(02-04-2018 02:22 PM)compsystems Wrote:  +10

Fabulous, Hp48 now available from anywhere in the world =)

There is a constant flicker of the LCD, I think this could improve as the source code evolves or improves. I think they should add more enthusiasts to have a more powerful hp48-cloud

Thank you very much
That is exactly the point !
Visit this user's website Find all posts by this user
Quote this message in a reply
03-10-2018, 03:27 PM (This post was last modified: 03-10-2018 04:07 PM by compsystems.)
Post: #43
RE: Emu48 Javascript ?
a very useful feature for example to link it with other applications is to execute instructions or commands on the screen using the browser input line

this performs the TI68k emulator
Sample
https://tiplanet.org/emu68k_fork/#tExpand(sin(x+y))




.
Find all posts by this user
Quote this message in a reply
Post Reply 




User(s) browsing this thread: 1 Guest(s)