mirror of
https://github.com/tillitis/tillitis-key1.git
synced 2025-03-12 18:16:55 -04:00
13 lines
262 B
C
13 lines
262 B
C
// SPDX-FileCopyrightText: 2024 Tillitis AB <tillitis.se>
|
|
// SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
#include "../tk1/types.h"
|
|
|
|
#ifndef TKEY_APP_SYSCALL_H
|
|
#define TKEY_APP_SYSCALL_H
|
|
|
|
void syscall_enable(void);
|
|
int syscall(uint32_t number, uint32_t arg1);
|
|
|
|
#endif
|