We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12832a4 commit 324388cCopy full SHA for 324388c
Changelog.txt
@@ -1,4 +1,5 @@
1
Version 6.6.0
2
+- Added pc_key and pc_mouse to -gbrk
3
- Implemented proper boolean type for C
4
- Fixed -- operator for floats
5
- Made the BASIC boolean type a distinct type
backends/brkdebug.c
@@ -22,6 +22,8 @@ enum DebugBytecode {
22
DBC_CHAR = 5,
23
DBC_STRING = 6,
24
DBC_DELAY = 7,
25
+ DBC_PC_KEY = 8,
26
+ DBC_PC_MOUSE = 9,
27
28
// Flags
29
DBC_FLAG_NOCOMMA = 0x01,
@@ -51,7 +53,9 @@ static struct DebugFunc debug_func_table[] = {
51
53
{"if" ,DBC_IF},
52
54
{"ifnot" ,DBC_IFNOT},
55
{"dly" ,DBC_DELAY},
-
56
+ {"pc_key" ,DBC_PC_KEY},
57
+ {"pc_mouse" ,DBC_PC_MOUSE},
58
+
59
{"zstr" ,DBC_TYPE_STR},
60
{"lstr" ,DBC_TYPE_STR|DBC_FLAG_ARRAY},
61
0 commit comments