⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 binary.h

📁 USB monitor
💻 H
字号:
/* binary.h - Nereid USB Monitor / Binary description * Copyright (C) 2003 Tachibana Eriko * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA */#ifndef binary_h#define binary_h#define b0000_0000	0x00#define b0000_0001	0x01#define b0000_0010	0x02#define b0000_0011	0x03#define b0000_0100	0x04#define b0000_0101	0x05#define b0000_0110	0x06#define b0000_0111	0x07#define b0000_1000	0x08#define b0000_1001	0x09#define b0000_1010	0x0a#define b0000_1011	0x0b#define b0000_1100	0x0c#define b0000_1101	0x0d#define b0000_1110	0x0e#define b0000_1111	0x0f#define b0001_0000	0x10#define b0001_0001	0x11#define b0001_0010	0x12#define b0001_0011	0x13#define b0001_0100	0x14#define b0001_0101	0x15#define b0001_0110	0x16#define b0001_0111	0x17#define b0001_1000	0x18#define b0001_1001	0x19#define b0001_1010	0x1a#define b0001_1011	0x1b#define b0001_1100	0x1c#define b0001_1101	0x1d#define b0001_1110	0x1e#define b0001_1111	0x1f#define b0010_0000	0x20#define b0010_0001	0x21#define b0010_0010	0x22#define b0010_0011	0x23#define b0010_0100	0x24#define b0010_0101	0x25#define b0010_0110	0x26#define b0010_0111	0x27#define b0010_1000	0x28#define b0010_1001	0x29#define b0010_1010	0x2a#define b0010_1011	0x2b#define b0010_1100	0x2c#define b0010_1101	0x2d#define b0010_1110	0x2e#define b0010_1111	0x2f#define b0011_0000	0x30#define b0011_0001	0x31#define b0011_0010	0x32#define b0011_0011	0x33#define b0011_0100	0x34#define b0011_0101	0x35#define b0011_0110	0x36#define b0011_0111	0x37#define b0011_1000	0x38#define b0011_1001	0x39#define b0011_1010	0x3a#define b0011_1011	0x3b#define b0011_1100	0x3c#define b0011_1101	0x3d#define b0011_1110	0x3e#define b0011_1111	0x3f#define b0100_0000	0x40#define b0100_0001	0x41#define b0100_0010	0x42#define b0100_0011	0x43#define b0100_0100	0x44#define b0100_0101	0x45#define b0100_0110	0x46#define b0100_0111	0x47#define b0100_1000	0x48#define b0100_1001	0x49#define b0100_1010	0x4a#define b0100_1011	0x4b#define b0100_1100	0x4c#define b0100_1101	0x4d#define b0100_1110	0x4e#define b0100_1111	0x4f#define b0101_0000	0x50#define b0101_0001	0x51#define b0101_0010	0x52#define b0101_0011	0x53#define b0101_0100	0x54#define b0101_0101	0x55#define b0101_0110	0x56#define b0101_0111	0x57#define b0101_1000	0x58#define b0101_1001	0x59#define b0101_1010	0x5a#define b0101_1011	0x5b#define b0101_1100	0x5c#define b0101_1101	0x5d#define b0101_1110	0x5e#define b0101_1111	0x5f#define b0110_0000	0x60#define b0110_0001	0x61#define b0110_0010	0x62#define b0110_0011	0x63#define b0110_0100	0x64#define b0110_0101	0x65#define b0110_0110	0x66#define b0110_0111	0x67#define b0110_1000	0x68#define b0110_1001	0x69#define b0110_1010	0x6a#define b0110_1011	0x6b#define b0110_1100	0x6c#define b0110_1101	0x6d#define b0110_1110	0x6e#define b0110_1111	0x6f#define b0111_0000	0x70#define b0111_0001	0x71#define b0111_0010	0x72#define b0111_0011	0x73#define b0111_0100	0x74#define b0111_0101	0x75#define b0111_0110	0x76#define b0111_0111	0x77#define b0111_1000	0x78#define b0111_1001	0x79#define b0111_1010	0x7a#define b0111_1011	0x7b#define b0111_1100	0x7c#define b0111_1101	0x7d#define b0111_1110	0x7e#define b0111_1111	0x7f#define b1000_0000	0x80#define b1000_0001	0x81#define b1000_0010	0x82#define b1000_0011	0x83#define b1000_0100	0x84#define b1000_0101	0x85#define b1000_0110	0x86#define b1000_0111	0x87#define b1000_1000	0x88#define b1000_1001	0x89#define b1000_1010	0x8a#define b1000_1011	0x8b#define b1000_1100	0x8c#define b1000_1101	0x8d#define b1000_1110	0x8e#define b1000_1111	0x8f#define b1001_0000	0x90#define b1001_0001	0x91#define b1001_0010	0x92#define b1001_0011	0x93#define b1001_0100	0x94#define b1001_0101	0x95#define b1001_0110	0x96#define b1001_0111	0x97#define b1001_1000	0x98#define b1001_1001	0x99#define b1001_1010	0x9a#define b1001_1011	0x9b#define b1001_1100	0x9c#define b1001_1101	0x9d#define b1001_1110	0x9e#define b1001_1111	0x9f#define b1010_0000	0xa0#define b1010_0001	0xa1#define b1010_0010	0xa2#define b1010_0011	0xa3#define b1010_0100	0xa4#define b1010_0101	0xa5#define b1010_0110	0xa6#define b1010_0111	0xa7#define b1010_1000	0xa8#define b1010_1001	0xa9#define b1010_1010	0xaa#define b1010_1011	0xab#define b1010_1100	0xac#define b1010_1101	0xad#define b1010_1110	0xae#define b1010_1111	0xaf#define b1011_0000	0xb0#define b1011_0001	0xb1#define b1011_0010	0xb2#define b1011_0011	0xb3#define b1011_0100	0xb4#define b1011_0101	0xb5#define b1011_0110	0xb6#define b1011_0111	0xb7#define b1011_1000	0xb8#define b1011_1001	0xb9#define b1011_1010	0xba#define b1011_1011	0xbb#define b1011_1100	0xbc#define b1011_1101	0xbd#define b1011_1110	0xbe#define b1011_1111	0xbf#define b1100_0000	0xc0#define b1100_0001	0xc1#define b1100_0010	0xc2#define b1100_0011	0xc3#define b1100_0100	0xc4#define b1100_0101	0xc5#define b1100_0110	0xc6#define b1100_0111	0xc7#define b1100_1000	0xc8#define b1100_1001	0xc9#define b1100_1010	0xca#define b1100_1011	0xcb#define b1100_1100	0xcc#define b1100_1101	0xcd#define b1100_1110	0xce#define b1100_1111	0xcf#define b1101_0000	0xd0#define b1101_0001	0xd1#define b1101_0010	0xd2#define b1101_0011	0xd3#define b1101_0100	0xd4#define b1101_0101	0xd5#define b1101_0110	0xd6#define b1101_0111	0xd7#define b1101_1000	0xd8#define b1101_1001	0xd9#define b1101_1010	0xda#define b1101_1011	0xdb#define b1101_1100	0xdc#define b1101_1101	0xdd#define b1101_1110	0xde#define b1101_1111	0xdf#define b1110_0000	0xe0#define b1110_0001	0xe1#define b1110_0010	0xe2#define b1110_0011	0xe3#define b1110_0100	0xe4#define b1110_0101	0xe5#define b1110_0110	0xe6#define b1110_0111	0xe7#define b1110_1000	0xe8#define b1110_1001	0xe9#define b1110_1010	0xea#define b1110_1011	0xeb#define b1110_1100	0xec#define b1110_1101	0xed#define b1110_1110	0xee#define b1110_1111	0xef#define b1111_0000	0xf0#define b1111_0001	0xf1#define b1111_0010	0xf2#define b1111_0011	0xf3#define b1111_0100	0xf4#define b1111_0101	0xf5#define b1111_0110	0xf6#define b1111_0111	0xf7#define b1111_1000	0xf8#define b1111_1001	0xf9#define b1111_1010	0xfa#define b1111_1011	0xfb#define b1111_1100	0xfc#define b1111_1101	0xfd#define b1111_1110	0xfe#define b1111_1111	0xff#endif /* !binary_h *//* EOF */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -