clashilator-0.1.0: template/Interface.h.mustache
#pragma once
#include <stdint.h>
typedef int bit;
typedef struct
{
{{#inPorts}}
{{cType}} {{cName}};
{{/inPorts}}
} INPUT;
typedef struct
{
{{#outPorts}}
{{cType}} {{cName}};
{{/outPorts}}
} OUTPUT;