annotate ide/compiler/builtin.py @ 9:92ace1ca50a8
64 bits kernel without interrupts but with printf in C
author |
windel |
date |
Sun, 13 Nov 2011 12:47:47 +0100 |
parents |
92df07bc2081 |
children |
|
rev |
line source |
1
|
1 from .nodes import *
|
|
2
|
|
3 boolean = BaseType('boolean', 8) # Choose: 1 or 8 bytes?
|
|
4 integer = BaseType('integer', 8)
|
|
5 real = BaseType('real', 8)
|
|
6 char = BaseType('char', 1)
|
|
7 void = BaseType('void', 0)
|
|
8
|
|
9 chr_func = BuiltinProcedure('chr', ProcedureType([Parameter('value', 'x', integer)], char))
|
|
10
|