Skip to content
Snippets Groups Projects
BasicCpu.tmpl.h 321 B
Newer Older
#pragma once

#define RESTRICT __restrict__

#include <cstdint>

{% for header in includes %}
#include {{header}}
{% endfor %}


namespace {{root_namespace}} {

{% for function in functions %}
void {{ function.name }} ( {{ function | generate_function_parameter_list }} );
{% endfor %}

} // namespace {{root_namespace}}