You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
patacongo b121fbbb00 Add configurable application entry point 13 years ago
..
Kconfig update Kconfig files 13 years ago
Makefile Completes coding of the PWM module 13 years ago
README.txt I learned how to spell PSEUDO 13 years ago
device.c Move file-system header files to include/nuttx/fs 13 years ago
hello.h Completes coding of the PWM module 13 years ago
hello.pas Completes coding of the PWM module 13 years ago
hello.pex Completes coding of the PWM module 13 years ago
mkhello.sh Completes coding of the PWM module 13 years ago
pashello.c Add configurable application entry point 13 years ago
pashello.h Completes coding of the PWM module 13 years ago

README.txt

README
^^^^^^

hello.pas

This is a sample "Hello, World!" Pascal Program

hello.pex

This is the compiled, linked P-Code executable that results
when hello.pas is compiled.

hello.h

This file defines an initialized C array holds a copy of
hello.pex. This file as created by:

xxd -i hello.pex >hello.h

mkhello.sh

This is a scripts that can be used to rebuild both hello.pex
and hello.h.

device.c

The hello.pex file must be provided to the interpreter as a file
in the file system. Normally this would be done using real storage
medium. In this example, we will use device.c:

device.c implements a simple device driver. Reads from this device
will access the in-memory copy of hello.pex This device driver is
registered as /dev/pashello in the pseudo filesystem.