diff options
Diffstat (limited to 'goal.fiddle')
-rw-r--r-- | goal.fiddle | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/goal.fiddle b/goal.fiddle index 1289c87..811719c 100644 --- a/goal.fiddle +++ b/goal.fiddle @@ -1,13 +1,15 @@ +option endian little; + // package for the GPIO system. package gpio { location gpio_a_base = 0x4800_0000; location gpio_b_base = 0x4800_0400; - location gpio_c_base = 0x4800_0400; + location gpio_c_base = 0x4800_0800; /** IO Data. This is just an expressive boolean. */ bittype data_t : enum(1) { - low = 0, + low =stream 0, high = 1, } |