Post Reply 
12C vs 11C program, 11C not working
12-17-2018, 08:39 AM
Post: #6
RE: 12C vs 11C program, 11C not working
(12-16-2018 11:31 PM)calcphil12c11c Wrote:  Only difference is the LBL's...

The major difference is that you use a real 12C nit an 11C simulator program. ;-)

1. Place an ENTER before the 0 in your 11C progran. As Thomas already said, this 0 seems to get appended to your input. If this really happens it's a bug in the simulator as on a real hardware 11C the [R/S] key enables stack lift.

So insert an ENTER between R/S and 0. Or, even better, use the X<0? test instead.

2. Please try the programs I posted.

12C:
Code:
01 ENTER
02 3
03 ,
04 7
05 8
06 5
07 4
08 x
09 CHS
10 GTO 00

11C:
Code:
001 LBL A
002 ENTER
003 3
004 ,
005 7
006 8
007 5
008 4
009 x
010 CHS
011 RTN

This is shorter and it should definitely work.

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


Messages In This Thread
RE: 12C vs 11C program, 11C not working - Dieter - 12-17-2018 08:39 AM



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