Search found 602 matches

by dlachieze
Sun Oct 29, 2023 12:18 am
Forum: DM41X
Topic: Help Understand Coconut VASM Listing
Replies: 5
Views: 1947

Re: Help Understand Coconut VASM Listing

Can anyone help me understand the Coconut VASM GFF listing? […] Any explanation of this listing is appreciate. The VASM listing is the concatenation of 12 files named CN0B, CN1B, CN2B,… CN11B. Each file corresponds to a block of 1024 instructions, each instruction being coded on 10 bits. These file...
by dlachieze
Wed Oct 25, 2023 6:14 pm
Forum: C47/C43, WP43, WP34S
Topic: C47 Classic single shift, replaces C43 on DM42
Replies: 777
Views: 69282

Re: C47 Classic single shift, replaces C43 on DM42

Pyjam wrote:
Wed Oct 25, 2023 5:03 pm
if there were a way of not executing step-by-step the contents of a routine when an XEQ instruction is encountered, it would be a considerable improvement.
Like the Step Over function of Free42?
(see the description of Step Into, Step Over, and Step Out in the Free42 Programming Utilities )
by dlachieze
Sun Oct 22, 2023 2:37 pm
Forum: C47/C43, WP43, WP34S
Topic: C47 Bug Reports
Replies: 415
Views: 77723

Re: C47 Bug Reports

Mike wrote:
Sun Oct 22, 2023 2:28 pm
Possible Bug, or I am making an incorrect assumption.
It’s a known bug that is listed in the Gitlab open issues, fix will come, at some point.
Mike wrote:
Sun Oct 22, 2023 2:28 pm
Am I allowed to have two menus defined like this and then assinged to my user menu?
Yes, it should be possible.
by dlachieze
Sun Oct 22, 2023 9:43 am
Forum: C47/C43, WP43, WP34S
Topic: C47 Bug Reports
Replies: 415
Views: 77723

Re: C47 Bug Reports

Not sure what you propose. 2. You want a blank screen in interactive mode? 4. Maybe to change the PAUSE parameter 0 to mean wait indefinately for keypress (or until battery fails ;-) ). Would that help? to 2) No, I do not need a blank screen in interactive mode, but the coding of CLLCD function in ...
by dlachieze
Wed Oct 18, 2023 10:09 pm
Forum: C47/C43, WP43, WP34S
Topic: C47 - How to enter hex numbers in PRGM mode?
Replies: 15
Views: 2295

Re: C47 - How to enter hex numbers in PRGM mode?

karokurt wrote:
Wed Oct 18, 2023 10:01 pm
(Is there a screen snap function within PRGM mode?)
Same as for the DM42: press the shift key, and while it is pressed press the E key (DISP).
by dlachieze
Mon Oct 16, 2023 9:41 pm
Forum: C47/C43, WP43, WP34S
Topic: [C47] - Remarks on ALPHA mode
Replies: 165
Views: 10951

Re: [C47] - Remarks on ALPHA mode

The issue highlighted here is that this particular menu has 2.5 pages of non-alpha and non-numeric characters in those pages. Non-alpha characters in alpha mode ? How can this be possible ;) The best suggestion made though, is not "non-a" any more, but αMisc to match the neighbouring soft...
by dlachieze
Mon Oct 16, 2023 9:08 pm
Forum: C47/C43, WP43, WP34S
Topic: [C47] - Remarks on ALPHA mode
Replies: 165
Views: 10951

Re: [C47] - Remarks on ALPHA mode

"α." menu: Most of the backbone is from WP43, and as we continue to grow, things change to what it must be. Sometimes, I have no idea why things are called the way they are, as I forked from WP43 in only in 2019 I think, at which point Walter's spec was probably 10 years old already. So u...
by dlachieze
Fri Oct 13, 2023 11:57 am
Forum: C47/C43, WP43, WP34S
Topic: [C47] - Proposal for MyPrgm
Replies: 3
Views: 1070

Re: [C47] - Proposal for MyPrgm

I had the exact same concerns regarding the program mode and this is why since the last release the WP43 has a programmable menu called MyPFN that is displayed by default when entering program mode. Here is my personal MyPFN menu on the WP43 with the main program structure instructions: labels, jump...
by dlachieze
Fri Oct 13, 2023 8:57 am
Forum: C47/C43, WP43, WP34S
Topic: [C47] - Local registers
Replies: 12
Views: 2118

Re: [C47] - Local registers

Another topic without relation: In the WP43 Reference Manual, the description of RTN+1 is different than the one in the C47 documentation. Does it work in a different way with the two calculators? Just a side note: it would have been better to create a dedicated topic for this as now the RTN+1 and ...
by dlachieze
Thu Oct 12, 2023 6:57 am
Forum: C47/C43, WP43, WP34S
Topic: [C47] - Local registers
Replies: 12
Views: 2118

Re: [C47] - Local registers

A couple of questions about the local registers. If I understand well, a local register exists until a RTN instruction is encountered (or PopLR). Yes, unless a new LOCR instruction in the same routine reduces the number of local registers below the considered register. The situation: LBL 01 creates...