view python/ppci/builtin.py @ 101:af0d7913677a

Fixes and splitting into 3 stage
author windel
date Mon, 24 Dec 2012 17:55:08 +0100
parents a350055d6119
children
line wrap: on
line source

from .nodes import *

boolean = BaseType('boolean', 8) # Choose: 1 or 8 bytes?
integer = BaseType('integer', 8)
real = BaseType('real', 8)
char = BaseType('char', 1)
void = BaseType('void', 0)

chr_func = BuiltinProcedure('chr', ProcedureType([Parameter('value', 'x', integer)], char))