aboutsummaryrefslogtreecommitdiffstats
path: root/Lab_2B.X/lab2b_asm.s
diff options
context:
space:
mode:
authorRossTheRoss <msattr@gmail.com>2020-02-09 12:48:36 -0600
committerRossTheRoss <msattr@gmail.com>2020-02-09 12:48:36 -0600
commit18b29b451daa8b2b252ae615531d4af50608696e (patch)
treee41e300e8ff6a164b81d077e1cc3d04c682eccca /Lab_2B.X/lab2b_asm.s
parentadd some c o m m e n t s (diff)
parent? (diff)
downloadee2361-18b29b451daa8b2b252ae615531d4af50608696e.tar
ee2361-18b29b451daa8b2b252ae615531d4af50608696e.tar.gz
ee2361-18b29b451daa8b2b252ae615531d4af50608696e.tar.bz2
ee2361-18b29b451daa8b2b252ae615531d4af50608696e.tar.lz
ee2361-18b29b451daa8b2b252ae615531d4af50608696e.tar.xz
ee2361-18b29b451daa8b2b252ae615531d4af50608696e.tar.zst
ee2361-18b29b451daa8b2b252ae615531d4af50608696e.zip
Merge branch 'master' of https://github.com/RosstheRoss/EE2361Projects
Diffstat (limited to 'Lab_2B.X/lab2b_asm.s')
-rw-r--r--Lab_2B.X/lab2b_asm.s14
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