diff options
author | RossTheRoss <msattr@gmail.com> | 2020-02-09 12:38:01 -0600 |
---|---|---|
committer | RossTheRoss <msattr@gmail.com> | 2020-02-09 12:38:11 -0600 |
commit | 02d5204a1ae23b759888ba55c0458d1471281eae (patch) | |
tree | ae29f0318212e70eb3475fc3480920bebfd1af11 /Lab_2B.X/lab2b_asm.s | |
parent | A (diff) | |
download | ee2361-02d5204a1ae23b759888ba55c0458d1471281eae.tar ee2361-02d5204a1ae23b759888ba55c0458d1471281eae.tar.gz ee2361-02d5204a1ae23b759888ba55c0458d1471281eae.tar.bz2 ee2361-02d5204a1ae23b759888ba55c0458d1471281eae.tar.lz ee2361-02d5204a1ae23b759888ba55c0458d1471281eae.tar.xz ee2361-02d5204a1ae23b759888ba55c0458d1471281eae.tar.zst ee2361-02d5204a1ae23b759888ba55c0458d1471281eae.zip |
?
Diffstat (limited to 'Lab_2B.X/lab2b_asm.s')
-rw-r--r-- | Lab_2B.X/lab2b_asm.s | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Lab_2B.X/lab2b_asm.s b/Lab_2B.X/lab2b_asm.s index 3c3e19e..675987e 100644 --- a/Lab_2B.X/lab2b_asm.s +++ b/Lab_2B.X/lab2b_asm.s @@ -21,19 +21,19 @@ _wait_1ms: _write_0: ;2 cycles for function call inc LATA ;1 - repeat #3 ;1 for load - nop ;3+1=4 nop + repeat #2 ;1 for load + nop ;2+1=3 nop clr LATA ;1 - repeat #6 ;1 for load - nop ;1+6=7 nop + repeat #7 ;1 for load + nop ;1+7=8 nop return ;3 return _write_1: ;2 cycle call inc LATA ;1 - repeat #10;1 load - nop ;1+10=11 nop + repeat #8 ;1 load + nop ;1+9=10 nop clr LATA ;1 - nop ;1 + nop ;1 return ;3 return
\ No newline at end of file |