File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ static inline void PreSetDataMem(Machine *m, Address16 address)
11
11
UNUSED (m );
12
12
UNUSED (address );
13
13
#ifdef PERIPHERAL_USI
14
- if (address <= 0x10 || address >= 0x0D )
14
+ if (address <= 0x10 && address >= 0x0D )
15
15
{
16
16
USI_PostGetDataMem (m , address );
17
17
}
@@ -23,7 +23,7 @@ static inline void PostSetDataMem(Machine *m, Address16 address)
23
23
UNUSED (m );
24
24
UNUSED (address );
25
25
#ifdef PERIPHERAL_USI
26
- if (address <= 0x10 || address >= 0x0D )
26
+ if (address <= 0x10 && address >= 0x0D )
27
27
{
28
28
USI_PostGetDataMem (m , address );
29
29
}
@@ -35,7 +35,7 @@ static inline void PreGetDataMem(Machine *m, Address16 address)
35
35
UNUSED (m );
36
36
UNUSED (address );
37
37
#ifdef PERIPHERAL_USI
38
- if (address <= 0x10 || address >= 0x0D )
38
+ if (address <= 0x10 && address >= 0x0D )
39
39
{
40
40
USI_PostGetDataMem (m , address );
41
41
}
@@ -47,7 +47,7 @@ static inline void PostGetDataMem(Machine *m, Address16 address)
47
47
UNUSED (m );
48
48
UNUSED (address );
49
49
#ifdef PERIPHERAL_USI
50
- if (address <= 0x10 || address >= 0x0D )
50
+ if (address <= 0x10 && address >= 0x0D )
51
51
{
52
52
USI_PostGetDataMem (m , address );
53
53
}
You can’t perform that action at this time.
0 commit comments