Merge pull request #6288 from TomoYamanaka/master

Fix macro definition of iodefine_typedef for RZ_A1H
pull/6211/merge
Cruz Monrreal 2018-03-15 10:48:02 -05:00 committed by GitHub
commit 69bc68d21f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -54,7 +54,9 @@
typedef enum iodefine_byte_select_t
{
R_IO_L = 0, R_IO_H = 1,
R_IO_LL= 0, R_IO_LH = 1, R_IO_HL = 2, R_IO_HH = 3
R_IO_LL= 0, R_IO_LH = 1, R_IO_HL = 2, R_IO_HH = 3,
L = 0, H = 1,
LL= 0, LH = 1, HL = 2, HH = 3
} iodefine_byte_select_t;