Announcement

Collapse
No announcement yet.

Turbo Pascal In JavaScript

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Turbo Pascal In JavaScript

    Written by David Conrad

    Wednesday, 30 October 2013 00:00

    Everyone is now used to the idea that JavaScript can do amazing things, but Turbo Pascal in a browser is worth a look for anyone who remembers its original implementation. It includes a p-code virtual machine that is binary compatible with the UCSD compilers.

    Turbo Pascal was one of the breakthroughs of the 1980's. It was a PC implementation of the standard Pascal language, which was much used at the time to teach computer science. Pascal was one of the first modern languages to be available on the PC. Later it evolved into an object-oriented version that is still going strong as Delphi.

    The JavaScript implementation, which is on GitHub, isn't a complete implementation of Turbo Pascal 5.5, but if you look at the demos it is impressive, and it includes most of the language and most of the graphics module. The author, Lawrence Kesteloot, only implemented enough of the language and the standard library to run five original programs written back in 1989 - programmers do difficult things for a range of crazy reasons!

    The hand-coded recursive descent compiler, Pascal is a block structured language, takes about 6000 lines of JavaScript. The original Turbo Pascal compiled all the way to machine code, hence the "Turbo" in its name. Earlier implementations of Pascal used virtual machine that ran p-code. Today VM's are a very popular way of implementing a language but back then the technology wasn't so good and so "p-code" was synonymous with "slow".

    Unlike Turbo Pascal proper, the JavaScript compiler outputs p-code. Of course, this means that the project needed a p-code VM and that is what you will find in the GitHub repository - and it's about 600 lines of commented JavaScript. It is claimed to be binary compatible with the original UCSD Pascal compiler, which implies that it could be used to run legacy UCSD Pascal, Fortran and Basic programs. In other words, the p-code VM might be useful in its own right.

    The compiler has a user front end that mimics the original Turbo Pascal command interface - later it acquired a GUI. If you try it out here, note that not all of the commands have been implemented. To run one of the sample programs use the D command to list the directory and then use the W command to load the file followed by R to run it. Use Ctrl-C to stop it.

    More Information

    Live Web Demo Of Turbo Pascal

    Blog Post About The Compiler And Demos

    GitHub Turbo Pascal

    Related Articles

    Pascal IDE Lazarus 1.0 Released

    Interpreters, VMs and JIT

    The Top Languages of 2012

    Programming Languages An Infographic
    The Hackmaster
Working...
X