Skip to content

Commit

Permalink
Change pms171b flags to match free-pdk#25
Browse files Browse the repository at this point in the history
  • Loading branch information
david-sawatzke committed Jun 29, 2020
1 parent d876e01 commit 312fc2f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Examples/src/easypdk/pms171b.h
Original file line number Diff line number Diff line change
Expand Up @@ -140,10 +140,10 @@ __sfr16 _t16c;
#define T16C _t16c

//flag definitions
#define FLAG_ZF 1
#define FLAG_CF 2
#define FLAG_AC 4
#define FLAG_OV 8
#define FLAG_ZF 0x01
#define FLAG_CF 0x02
#define FLAG_AC 0x04
#define FLAG_OV 0x08
#define FLAG_ZF_BIT 0
#define FLAG_CF_BIT 1
#define FLAG_AC_BIT 2
Expand Down

0 comments on commit 312fc2f

Please sign in to comment.