manual:chapter1:introduction

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
manual:chapter1:introduction [2019/10/21 15:27]
jojo1973 Reformatted
manual:chapter1:introduction [2021/07/23 07:16] (current)
claudio
Line 2: Line 2:
 **newRPL** is a modern implementation of the RPL language started near the end of 2013 and is still under development.  The motivation for this re-implementation is to preserve the language by making it accessible on modern platforms (an embedded device or a PC). **newRPL** is a modern implementation of the RPL language started near the end of 2013 and is still under development.  The motivation for this re-implementation is to preserve the language by making it accessible on modern platforms (an embedded device or a PC).
  
-The goal of the project is to create a fully functional calculator RPL environment that runs natively (as opposed to an emulation or interpreted layer) on the target hardware.  Furthermore, newRPL is also designed to be backwards compatible with the RPL language and programs that can be run on the Hewlett Packard 48/49/50g series calculators.  The newRPL project (released under the BSD open source license) implements RPL in portable C, and is initially targeted for an HP50g calculator and PC emulator.+The goal of the project is to create a fully functional calculator RPL environment that runs natively (as opposed to an emulation or interpreted layer) on the target hardware.  Furthermore, **newRPL** is also designed to be loosely compatible with the RPL language and programs that can be run on the Hewlett Packard 48/49/50g series calculators.  The **newRPL** project (released under the BSD open source license) implements RPL in portable C, and while it was initially targeted for the HP50g calculator hardware, it now runs on variety of hardware platforms:
  
-In HP calculator parlance there is a distinction between **UserRPL** and **SystemRPL**.  The former is the language directly accessible to the user of an HP calculatorwhereas the latter typically requires external tools and can potentially lead to system crashes.  newRPL seeks to implement **UserRPL*only (SystemRPL was used as a lower level and faster language in the Saturn processor environment or emulation layer).+    * HP 50g calculator 
 +    HP 48GII calculator 
 +    HP 40gs calculator 
 +    HP 39gs calculator 
 +    HP Prime G1 (first generation) 
 +    PC (Windows providedother OS need to build from sources) 
 +    Android (7.0 and above)
  
-A typical scenario is to install newRPL on 50g (which has the ability to replace or //flash// the operating system ROM).  Note that this procedure **completely replaces the stock HP50g ROM**, so to return the calculator to its original state would require having the HP stock ROM on hand+In HP calculator parlance there is a distinction between **UserRPL** and **SystemRPL**.  The former is the language directly accessible to the user of an HP calculator, whereas the latter typically requires external tools and can potentially lead to system crashes.  **newRPL** seeks to implement UserRPL only (SystemRPL was used as a lower level and faster language in the Saturn processor environment or emulation layer).
  
-newRPL is different from RPL most noticeably in its speed (runs natively on the target hardware), use of 16 level greyscale, and two separate levels of soft menus that are customizable by the user.+A typical scenario is to install **newRPL** on a 50g (which has the ability to replace or //flash// the operating system ROM).  Note that this procedure __completely replaces the stock HP50g ROM__, so to return the calculator to its original state would require having the HP stock ROM on hand
  
-If you are coming from the latest stock 50g ROM, it should be noted that newRPL is not designed to re-duplicate all the features of that ROM, but rather just the RPL part.  So, for example, you won't find a CAS (Computer Algebra System) in newRPL, nor an equation writer.  However, what you will find in newRPL is (ultimately) the 700 or so commands available in the 50g along with some additional commands not found in a 50g.+**newRPL** is different from RPL most noticeably in its speed (runs natively on the target hardware), use of 16 level greyscale, and two separate levels of soft menus that are customizable by the user. 
 + 
 +If you are coming from the latest stock 50g ROM, it should be noted that **newRPL** is not designed to re-duplicate all the features of that ROM, but rather just the RPL part.  So, for example, you won't find a CAS (Computer Algebra System) in **newRPL**, nor an equation writer.  However, what you will find in **newRPL** is (ultimately) the 700 or so commands available in the 50g along with some additional commands not found in a 50g.
  
 Here is a list of changes and enhancements from the stock 50g ROM: Here is a list of changes and enhancements from the stock 50g ROM:
Line 22: Line 30:
     * Faster access to variables.     * Faster access to variables.
  
-    * You can declare local variables anywhere in the code with ''LSTO''.+    * You can declare local variables anywhere in the code with ''[[manual:chapter6:lam:cmd_lsto|LSTO]]''.
  
     * Any program can be sandboxed to keep your directories clean.     * Any program can be sandboxed to keep your directories clean.
Line 28: Line 36:
     * Persistent comments stay in the compiled code to make it more readable.     * Persistent comments stay in the compiled code to make it more readable.
  
-    * Faster list processing, also swapped ''+'' and ''ADD'' for lists.+    * Faster list processing, also swapped ''[[manual:chapter6:operators:cmd_ovr_add|+]]'' and ''[[manual:chapter6:lists:cmd_add|ADD]]'' for lists.
          
     * Unicode text support all over.     * Unicode text support all over.
Line 47: Line 55:
          
     * It will accept SDHC cards as well as standard SD cards.     * It will accept SDHC cards as well as standard SD cards.
- 
- 
  • manual/chapter1/introduction.1571696873.txt.gz
  • Last modified: 2019/10/21 15:27
  • by jojo1973