summaryrefslogtreecommitdiff
path: root/converter
diff options
context:
space:
mode:
authortmk <nobody@nowhere>2013-07-15 23:32:14 +0900
committertmk <nobody@nowhere>2013-07-15 23:32:14 +0900
commit86623f57247c92242751ceae4cb291e7f3d19540 (patch)
tree41a0d02face60c2adccd15bf7bd89d2f3e4b89fb /converter
parentf4c69652c17e97241e2f7b7f22ab438e9a3ceb0a (diff)
Add compile conditional for assembler(xprintf)
Diffstat (limited to 'converter')
-rw-r--r--converter/adb_usb/config.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/converter/adb_usb/config.h b/converter/adb_usb/config.h
index 9aa3489da7..7e2372edff 100644
--- a/converter/adb_usb/config.h
+++ b/converter/adb_usb/config.h
@@ -58,10 +58,12 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
//#define ADB_PSW_BIT 1 // optional
/* key combination for command */
+#ifndef __ASSEMBLER__
#include "adb.h"
#include "matrix.h"
#define IS_COMMAND() ( \
matrix_is_on(MATRIX_ROW(ADB_POWER), MATRIX_COL(ADB_POWER)) \
)
+#endif
#endif