/* ChibiOS - Copyright (C) 2006..2016 Giovanni Di Sirio Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ #ifndef _TESTMBOX_H_ #define _TESTMBOX_H_ extern ROMCONST struct testcase * ROMCONST patternmbox[]; #endif /* _TESTMBOX_H_ */ CE40/ghdl
[no description]
aboutsummaryrefslogtreecommitdiffstats
path: root/python/libghdl/thin/vhdl/formatters.py
blob: 9c8bf9afb92f3aaf068315ca6f6eefc1a2483394 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from libghdl import libghdl
from ctypes import c_int32, c_char_p

Indent_String = libghdl.vhdl__formatters__indent_string

Allocate_Handle = libghdl.vhdl__formatters__allocate_handle

Get_Length = libghdl.vhdl__formatters__get_length
Get_Length.restype = c_int32

Get_C_String = libghdl.vhdl__formatters__get_c_string
Get_C_String.restype = c_char_p

Free_Handle = libghdl.vhdl__formatters__free_handle