hello.c00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089 #define M6811_BAUD 0x2B
00090 #define M6811_SCCR1 0x2C
00091 #define M6811_SCCR2 0x2D
00092 #define M6811_SCSR 0x2E
00093 #define M6811_SCDR 0x2F
00094
00095
00096 #define M6811_TE 0x08
00097 #define M6811_RE 0x04
00098
00099
00100 #define M6811_TDRE 0x80
00101
00102
00103 #define M6811_SCP1 0x20
00104 #define M6811_SCP0 0x10
00105 #define M6811_SCR2 0x04
00106 #define M6811_SCR1 0x02
00107 #define M6811_SCR0 0x01
00108
00109 #define M6811_BAUD_DIV_1 (0)
00110 #define M6811_BAUD_DIV_3 (M6811_SCP0)
00111 #define M6811_BAUD_DIV_4 (M6811_SCP1)
00112 #define M6811_BAUD_DIV_13 (M6811_SCP1|M6811_SCP0)
00113
00114 #define M6811_DEF_BAUD M6811_BAUD_DIV_4
00115
00116
00117
00118
00119 extern volatile unsigned char _io_ports[];
00120
00121
00122
00123
00124
00125
00126
00127
00128
00129
00130
00131
00132
00144 static inline void
00145 serial_send (char c)
00146 {
00147
00148 while (!(_io_ports[M6811_SCSR] & M6811_TDRE))
00149 continue;
00150
00151 _io_ports[M6811_SCDR] = c;
00152 _io_ports[M6811_SCCR2] |= M6811_TE;
00153 }
00154
00155 void
00156 serial_print (const char *msg)
00157 {
00158 while (*msg != 0)
00159 serial_send (*msg++);
00160 }
00161
00162
00163
00164
00165
00166
00167
00168
00169
00170
00171
00172
00173
00174
00175
00176
00177
00178
00179
00180
00181
00182
00183
00184
00185 int
00186 main ()
00187 {
00188
00189 _io_ports[M6811_BAUD] = M6811_DEF_BAUD;
00190
00191
00192 _io_ports[M6811_SCCR1] = 0;
00193
00194
00195 _io_ports[M6811_SCCR2] = M6811_TE | M6811_RE;
00196
00197 serial_print ("Hello world!\n");
00198 return 0;
00199 }
|