Remove redundant code

The most recent merge with avr-common brings us these macros via arch.h.
Therefore the ones in main.c are redundant.

Signed-off-by: Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
1 files changed, 0 insertions(+), 9 deletions(-)

M main.c
M main.c +0 -9
@@ 23,15 23,6 @@ 
 #include "arch.h"
 #include "fmfox.h"
 
-#define PIN_INPUT_PORT_Z(bit)		0
-#define PIN_INPUT_PORT_H(bit)		(1 << (bit))
-#define PIN_INPUT_DDR(bit)		0
-#define PIN_OUTPUT_PORT_H(bit)		(1 << (bit))
-#define PIN_OUTPUT_PORT_L(bit)		0
-#define PIN_OUTPUT_DDR(bit)		(1 << (bit))
-
-#define PORTC	(offsetof(struct mmregs_layout, portc) - 0x20)
-
 #define TONE_LEN_PATTERN_PAUSE	(OUT_SAMPLE_RATE / 2) /* 1/2 second */
 #define TONE_LEN_FIXED		(OUT_SAMPLE_RATE / 4) /* 1/4 second tones */
 #define TONE_LEN_LFSR		(OUT_SAMPLE_RATE / 4) /* 1/4 second tones */