PO 2013 compiler for Wirth's RISC processor now can be compiled with voc

This commit is contained in:
Norayr Chilingarian 2014-01-24 17:12:26 +04:00
parent cf06850388
commit edf0df4cbf
6 changed files with 253 additions and 71 deletions

10
src/voc07R/test.Mod Normal file
View file

@ -0,0 +1,10 @@
MODULE test;
VAR b : BOOLEAN;
i : INTEGER;
BEGIN
b := FALSE;
i := ORD(b);
END test.