-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathlibbasic.h
More file actions
28 lines (22 loc) · 698 Bytes
/
Copy pathlibbasic.h
File metadata and controls
28 lines (22 loc) · 698 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* _
** ___ ___ _ _|_|___ ___
** | _| .'|_'_| |_ -|_ -|
** |_| |__,|_,_|_|___|___|
** raxiss (c) 2021
**
** GNU General Public License v3.0
** See https://github.com/iss000/oricOpenLibrary/blob/main/LICENSE
**
*/
/* ================================================================== *
* libbasic code *
* ================================================================== */
#ifndef __LIBBASIC_H__
#define __LIBBASIC_H__
#ifndef ASSEMBLER
/* Link to BASIC exec */
extern char* _basic_s;
extern void _basic(void);
#define basic(str) {_basic_s=((char*)(str)),_basic();}
#endif
#endif /* __LIBBASIC_H__ */