04-04-2014, 04:29 PM
(04-04-2014 12:37 PM)walter b Wrote: [ -> ]The yReg display will be toggled by YDOFF / YDON. Probable default will be YDOFF on both the WP 34S and the WP 31S.
That sounds great. Thanks!
(04-04-2014 12:37 PM)walter b Wrote: [ -> ]The yReg display will be toggled by YDOFF / YDON. Probable default will be YDOFF on both the WP 34S and the WP 31S.
(04-04-2014 10:02 PM)BarryMead Wrote: [ -> ]Does anyone know when the emulator is scheduled to be rebuilt?
I keep checking but the most recent build is still 4-days old.
(04-05-2014 09:17 AM)fhub Wrote: [ -> ]But the fix for the non-working 8-level stack is still missing, too.
(04-05-2014 10:22 AM)fhub Wrote: [ -> ]... executing SSIZE8 simply does nothing, you still have only 4 stack levels (in the current WP31s).
(04-05-2014 11:03 AM)walter b Wrote: [ -> ]Ooops, we'll look into that. Thanks for reporting.
int stack_size(void) {
if (! UState.stack_depth || (! XromFlags.xIN))
return 4;
return 8;
}
if (! UState.stack_depth || (is_xrom() && ! XromFlags.xIN))
(04-05-2014 05:20 PM)John Smitherman Wrote: [ -> ]I just flashed version 3597 successfully. :-)
(04-04-2014 08:46 AM)walter b Wrote: [ -> ](04-04-2014 08:00 AM)Paul Dale Wrote: [ -> ]I'd prefer an unlimited stackAn unlimited stack has a significant drawback: there's no top level which can be repeated. IMHO, 8 levels are a nice practical compromise connecting the best of two worlds.
z [ENTER]
p [ENTER]
#
q
+
#
r
+
(04-05-2014 05:24 PM)Jonathan Cameron Wrote: [ -> ]Marcus has just rebuilt the windows emulator for the 31s which includes a few fixes (the 8-level stack issue, requiring only one press of 0 to STO-0 or RCL-0, trig fixes), etc. It is version 3598. The realbuild flash image will probably be rebuilt soon.
(04-05-2014 05:24 PM)Jonathan Cameron Wrote: [ -> ]The realbuild flash image will probably be rebuilt soon.
(04-06-2014 07:12 AM)Paul Dale Wrote: [ -> ]The 34S team is still open to constructive suggestions. Especially when they include code patches.I never bothered to submit my wp34s suggestion about saving both halves of the Polar/Rectangular
- Pauli
(04-09-2014 09:52 PM)BarryMead Wrote: [ -> ](04-06-2014 07:12 AM)Paul Dale Wrote: [ -> ]The 34S team is still open to constructive suggestions. Especially when they include code patches.I never bothered to submit my wp34s suggestion about saving both halves of the Polar/Rectangular
- Pauli
objects with setlastXY() until I read this posting, because I knew that the WP34S project was
closed to new ideas. But when I read this posting I turned it in, only to discover that I shouldn't have.
Oh Well I don't pretend to understand politics, only science!
(04-09-2014 11:12 PM)Marcel Samek Wrote: [ -> ]Well, if suggestions are being taken, one of the things that I would like is to have stosum & rclsum instructions which would take a register reference and allow one to store the summation registers to a register block starting at the specified reference, or load the summation registers from a register block starting at the specified reference.
That would allow me to have a program that has more that one set of summations going at a time.
(04-09-2014 11:12 PM)Marcel Samek Wrote: [ -> ]Well, if suggestions are being taken, one of the things that I would like is to have stosum & rclsum instructions which would take a register reference and allow one to store the summation registers to a register block starting at the specified reference, or load the summation registers from a register block starting at the specified reference.I assume you are planning to add these commands to your own custom version of the WP-34S not the
That would allow me to have a program that has more that one set of summations going at a time.
I've been meaning to look at the code to see the viability of doing something like that, but since we are taking requests , why not ask?
In all seriousness, even if the team is not interested in such an addition, I'd love to hear your thoughts on the feasibility if I were to undertake it in my own version.
(04-10-2014 12:22 AM)BarryMead Wrote: [ -> ]Johanathan, Paul, and Pascal have generously sent me detailed instructions on how to
set up my own tool chain so that I can compile custom versions of the calculator firmware, and
emulators. ( I am still in the process of getting that tool chain setup ) If you are interested in having
me forward those emails from Jonathan, Paul and Pascal to you let me know.
(04-10-2014 12:04 AM)Paul Dale Wrote: [ -> ]It wouldn't be difficult to code stosum and rclsum. There would be format conversions between the statistical accumulations and the registers and the register code would have to deal with bounds checking and single and double precision properly.