Post Reply 
Sharp PC-1500A Compiler
11-21-2024, 06:05 AM
Post: #1
Sharp PC-1500A Compiler
Has anyone tried this program? Unfortunately, it doesn't work for me, and after running RUN, some initialization takes place without error, but the program exits and DEF commands don't work.

http://www.pc1500.com/abc-compiler.html
Find all posts by this user
Quote this message in a reply
11-21-2024, 03:34 PM
Post: #2
RE: Sharp PC-1500A Compiler
No, have not used that one. I use the TASM extension I wrote for VS Code:

https://github.com/Jeff-Birt/TASM_vsCode_Extension

Also helpful is the PC-1500 library builder:

https://github.com/Jeff-Birt/Sharp_PC-1500_Lib_Builder
Find all posts by this user
Quote this message in a reply
11-22-2024, 05:49 AM
Post: #3
RE: Sharp PC-1500A Compiler
Thank you for the info. The program as such works, in fact all commands work, only the IF...GO command doesn't work, strange. But GO itself works.
Find all posts by this user
Quote this message in a reply
11-27-2024, 08:25 PM
Post: #4
RE: Sharp PC-1500A Compiler
Heureka, I figured it out!

In line 6510, it should not be &B5 but must be &BE (SJP i,j) instruction at address D0D2H, where two variables are compared.

The program actually couldn't work for anyone all the time, there were two errors.

3500:POKE P,&B5,&79,&AE,&38,&D2,&B5,X,&AE,&38,&D3,&B5,&79,&AE,&38,&D0,&B5,Y

6510:POKE P+18,&BE,&3A,&C4,&B5,ZZ,&BE,&D0,&D2,&89,2,&8E,3,&BA,Y,Z

I would stress to users that the _STOP function is absolutely necessary, otherwise the program will "wander" in RAM.

I will improve the program with other functions like SIN, COS, TAN or LOG.
Find all posts by this user
Quote this message in a reply
11-30-2024, 06:31 PM (This post was last modified: 12-01-2024 12:57 PM by Josef.)
Post: #5
RE: Sharp PC-1500A Compiler
Version 1.4 is ready, SIN, COS, TAN, LOG and ABS functions are added. Instructions and program is attached. This is how the solution of the Kepler equation looks like. Assembler tends to be much faster, especially in common mathematical operations. A bin file is basically a text file that can be converted to WAV, for example, or uploaded using the CE-158 (X) interface from a computer using RS232. The program after translation by the compiler occupies 391 Bytes in RAM.

*L=(M+180*I/pi* SIN(E) - E)/(1-I*COS (E))
IF ABS(L) > 1E-3 THEN E = E + L: GOTO *

0 M=E
1*F=ESX
2 F=F*I
3 F=F*D
4 F=F-E
5 F=F+M
6 C=ECX
7 C=C*I
8 C=K-C
9 L=F/C
10 E=E+L
11 L=LAX
12 IFL>RGO*
13 PRE
14 WE
15 STOP
16 END

M= Mean Anomaly, I= Eccentricity, D= 180/3.14, K=1, R=0.0001


Attached File(s)
.pdf  ABC-Mini Compiler-manual.pdf (Size: 246.08 KB / Downloads: 6)
.txt  ABCcompilerv1.4.txt (Size: 5.25 KB / Downloads: 5)
Find all posts by this user
Quote this message in a reply
12-01-2024, 12:32 PM
Post: #6
RE: Sharp PC-1500A Compiler
The author of the program made another mistake, and the GO command did not work. I didn't think to check all the instructions. I am attaching the corrected version.


Attached File(s)
.txt  ABCcompilerv1.4.txt (Size: 5.27 KB / Downloads: 2)
Find all posts by this user
Quote this message in a reply
Yesterday, 08:41 PM
Post: #7
RE: Sharp PC-1500A Compiler
I must admit that I have absolutely no experience with this calculator, but it reminds me how we can use this Python to RPN - source code converter to translate a corresponding Python program:
Code:
def kepler(M):
  I = 0.01671 # Earth's eccentricity
  E = M # initial value
  while True:
    L = (M+I*SIN(E)-E)/(1-I*COS(E))
    E += L
    if ABS(L) > 1E-3:
      continue
    return E

The generated program for the HP-42S can be simplified a bit to:
Code:
00 { 72-Byte Prgm }
01▸LBL "kepler"
02 STO "M"
03 STO "E"
04 0.01671
05 STO "I"
06▸LBL 00
07 RCL "M"
08 RCL "I"
09 RCL "E"
10 SIN
11 ×
12 +
13 RCL "E"
14 -
15 1
16 RCL "I"
17 RCL "E"
18 COS
19 ×
20 -
21 ÷
22 STO+ "E"
23 ABS
24 0.001
25 X<Y?
26 GTO 00
27 RCL "E"
28 END

Example

RAD
0.5
XEQ "kepler"

0.50813

RCL "E"
RCL "I"
RCL "E"
SIN
×
-

0.50000



(11-30-2024 06:31 PM)Josef Wrote:  0 M=E

I could be wrong, but shouldn't that rather be:
Code:
0 E=M
Find all posts by this user
Quote this message in a reply
Yesterday, 10:35 PM
Post: #8
RE: Sharp PC-1500A Compiler
Nice.

Yes, in the description, I stated M= Mean Anomaly; it should have been E= Mean Anomaly. So if we add M, then 0 must be E=M.
Find all posts by this user
Quote this message in a reply
Yesterday, 11:49 PM
Post: #9
RE: Sharp PC-1500A Compiler
(Yesterday 08:41 PM)Thomas Klemm Wrote:  I must admit that I have absolutely no experience with this calculator, but it reminds me how we can use this Python to RPN - source code converter

I just tried that converter. It chokes on the Python function sqrt! Calculators have a square root function, no?

Tom L
Cui bono?
Find all posts by this user
Quote this message in a reply
Today, 03:09 AM
Post: #10
RE: Sharp PC-1500A Compiler
(Yesterday 11:49 PM)toml_12953 Wrote:  It chokes on the Python function sqrt! Calculators have a square root function, no?

Python doesn't provide a sqrt function. It has to be imported from a library.

From Help & User Guide:
Quote:What is not supported
And won’t be
  • Imports and libraries

From List of HP42S Commands Reference:
\(
\begin{array}{|c|c|}
\hline
\text{HP42S Command} & \text{Supported in Python to RPN} & \text{Comments Parameters} & \text{Description (original HP42S)} \\
\hline
\text{SQRT} & \text{✓} & \text{(n)} & \text{Square root. Returns √x.} \\
\hline
\end{array}
\)

The following Python program works:
Code:
def radius(x, y):
    return SQRT(x**2 + y**2)

The generated code for the HP-42S can be optimized to:
Code:
LBL "radius"
STO 01          // param: y
RDN
STO 00          // param: x
RDN
RCL 00          // x
X↑2
RCL 01          // y
X↑2
+
SQRT            // Square root. Returns √x.
RTN             // return

You could also use the built-in function →POL instead:
Code:
r, phi = toPol(x, y)
Find all posts by this user
Quote this message in a reply
Today, 03:41 AM
Post: #11
RE: Sharp PC-1500A Compiler
(Today 03:09 AM)Thomas Klemm Wrote:  
(Yesterday 11:49 PM)toml_12953 Wrote:  It chokes on the Python function sqrt! Calculators have a square root function, no?

Python doesn't provide a sqrt function. It has to be imported from a library.

True but even if you import the math library, the converter should know that sqrt is the same as SQRT and tan is the same as TAN, etc.

Tom L
Cui bono?
Find all posts by this user
Quote this message in a reply
Today, 04:55 AM (This post was last modified: Today 06:38 AM by Thomas Klemm.)
Post: #12
RE: Sharp PC-1500A Compiler
If you want to run the code in a Jupyter notebook or a Python REPL you can import the functions and alias them with their uppercase names:
Code:
from math import sqrt as SQRT

def radius(x, y):
    return SQRT(x**2 + y**2)

radius(4, 3)

5.0

(Today 03:41 AM)toml_12953 Wrote:  (…) the converter should know that sqrt is the same as SQRT and tan is the same as TAN, etc.

Andy Bulka provides this converter as a free service.
He describes its use and limitations.
If that's not what you want, you have a few options:
  • write your own converter
  • fork Andy's repository pyrpn and adapt it to your needs
  • contact him directly
  • complain in this forum, which he last visited on 2024-05-12
Find all posts by this user
Quote this message in a reply
Post Reply 




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