Let's say we wanted to count from 0 to 99, and to write each value in sequence to an I/O port: char i; for (i=0; i<100; i++) { output _ port = i; } ...
確定! 回上一頁