summaryrefslogtreecommitdiff
path: root/tools/preproc/asm_file.h
diff options
context:
space:
mode:
authorYamaArashi <shadow962@live.com>2016-06-05 22:00:06 -0700
committerYamaArashi <shadow962@live.com>2016-06-05 22:00:06 -0700
commit20ca34287812a451b7921be4668816b01263a2e7 (patch)
treede2381108b914c0302c14b24e6cb38ee88e8456a /tools/preproc/asm_file.h
parent6c47f9de06c65074d8f0d8ce847ddc7addf6126f (diff)
add support for .braille directive to preproc
Diffstat (limited to 'tools/preproc/asm_file.h')
-rw-r--r--tools/preproc/asm_file.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/preproc/asm_file.h b/tools/preproc/asm_file.h
index 335dbab4b..c0aba878d 100644
--- a/tools/preproc/asm_file.h
+++ b/tools/preproc/asm_file.h
@@ -30,6 +30,7 @@ enum class Directive
{
Include,
String,
+ Braille,
Unknown
};
@@ -43,6 +44,7 @@ public:
Directive GetDirective();
std::string ReadPath();
int ReadString(unsigned char* s);
+ int ReadBraille(unsigned char* s);
bool IsAtEnd();
void OutputLine();
void OutputLocation();