diff options
author | Keith Packard <keithp@keithp.com> | 2008-12-18 12:37:32 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2008-12-18 12:37:32 -0800 |
commit | 0bc52385b8f86f9ca1c450ad106e6d8afe3bc153 (patch) | |
tree | d884e0a60ef9f0a8d56d5b5a68dedcf734a07eaa /blink.c | |
parent | 3779cc8b32cac3640f42bd0400d4199ddae965a1 (diff) |
faster
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'blink.c')
-rw-r--r-- | blink.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -30,7 +30,7 @@ delay (int n) int i, j, k; for (k = 0; k < n; k++) { - for (j = 0; j < 100; j++) + for (j = 0; j < 50; j++) for (i = 0; i < 1000; i++) nop(); } |