Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

language revision 0.1.3 #355

Merged
merged 27 commits into from
Oct 1, 2022
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
9a430d2
feat: detect kernel bsd
RodrigoDornelles Jul 30, 2022
8e919cd
fix: not use develop on checkout automatic publish
RodrigoDornelles Jul 30, 2022
cbf9895
tests: skip test_sleep_seconds
RodrigoDornelles Jul 30, 2022
241010b
doc: version 0.1.3
RodrigoDornelles Jul 30, 2022
daf0cb0
Merge branch 'develop' of github.com:RodrigoDornelles/3bc-lang into d…
RodrigoDornelles Jul 30, 2022
4185c9e
reafct: drop sscanf in driver_tty_input
RodrigoDornelles Aug 6, 2022
a60b1d0
refact: primitve types
RodrigoDornelles Sep 10, 2022
fbb8682
react: organize register menomonics #340
RodrigoDornelles Sep 10, 2022
37c1b5b
joke: cpp is bad
RodrigoDornelles Sep 10, 2022
78c9823
fix: some fix in C interpreter_sintax.c
RodrigoDornelles Sep 10, 2022
88233e1
Merge branch 'develop' of github.com:RodrigoDornelles/3bc-lang into d…
RodrigoDornelles Sep 10, 2022
055fc2a
style: some adjusts in 3bc_types
RodrigoDornelles Sep 10, 2022
7f6c1f1
feat: support z390x, mips64 & image publish on dockerhub (#352)
RodrigoDornelles Sep 24, 2022
fa21d31
Update roadmap.md
RodrigoDornelles Sep 24, 2022
307b25f
feat: add build for mips linux
RodrigoDornelles Sep 24, 2022
dbd8418
Update roadmap.md
RodrigoDornelles Sep 24, 2022
74ecafa
implemented binary search in register menemonics #345
RodrigoDornelles Sep 25, 2022
1ce4da1
refact: interpreter_syntax_constants
RodrigoDornelles Oct 1, 2022
9e02804
reafct: remove warnings
RodrigoDornelles Oct 1, 2022
1e57e2c
refact: remove deafult clang-tidy warnings
RodrigoDornelles Oct 1, 2022
70581cf
ci: add clang-tidy to automatic-lint pipeline
RodrigoDornelles Oct 1, 2022
d2a76f3
Merge branch 'master' of github.com:RodrigoDornelles/3bc-lang into de…
RodrigoDornelles Oct 1, 2022
566ae94
style: formated
RodrigoDornelles Oct 1, 2022
1dbce7e
fix: cc65 compiler
RodrigoDornelles Oct 1, 2022
224e63e
Create warnings.md
RodrigoDornelles Oct 1, 2022
ee6981e
Update README.md
RodrigoDornelles Oct 1, 2022
c81cf47
Update warnings.md
RodrigoDornelles Oct 1, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
style: some adjusts in 3bc_types
  • Loading branch information
RodrigoDornelles committed Sep 10, 2022
commit 055fc2ab7bb57af0ca7a1116c32f70fbfed06cf7
8 changes: 6 additions & 2 deletions src/3bc_types.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,11 @@
#ifndef H_TYPES_TBC
#define H_TYPES_TBC

#include "3bc_detect.h"
#ifndef H_DETECT_TBC
#warning "[3BC] it is recommended to \
include '3bc_detect.h' \
before '3bc_types.h'"
#endif

/**
* ______ _ _ _ _ _____
Expand Down Expand Up @@ -177,7 +181,7 @@ typedef tbc_u16_t app_3bc_id;
#elif defined(TBC_ARCH_BITS_8)
typedef tbc_u8_t app_3bc_id;
#else
typedef tbc_u8_t app_3bc_id;
typedef tbc_u16_t app_3bc_id;
#endif

/** FILE/STREAM/INTERFACE TYPES **/
Expand Down