diff options
| author | Benjamin Shockley <benjaminshockley@hotmail.com> | 2020-08-20 13:48:15 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-20 13:48:15 -0500 |
| commit | 0084f0af24e4e219bc040c52ee723959423de6e2 (patch) | |
| tree | 1aebdb362f08bf6417caa87836e3e4e739afc964 /tests/inlineasm | |
| parent | 9aebe2f1efc99871fcf283c304e3a8700050d736 (diff) | |
| parent | 4d7b9cde33934a44c4c905a49d2f831339fc8bd2 (diff) | |
Merge pull request #2 from adafruit/master
Master
Diffstat (limited to 'tests/inlineasm')
| -rw-r--r-- | tests/inlineasm/asmfpaddsub.py | 1 | ||||
| -rw-r--r-- | tests/inlineasm/asmfpldrstr.py | 1 | ||||
| -rw-r--r-- | tests/inlineasm/asmfpmuldiv.py | 1 | ||||
| -rw-r--r-- | tests/inlineasm/asmfpsqrt.py | 1 | ||||
| -rw-r--r-- | tests/inlineasm/asmspecialregs.py | 1 |
5 files changed, 0 insertions, 5 deletions
diff --git a/tests/inlineasm/asmfpaddsub.py b/tests/inlineasm/asmfpaddsub.py index b5fcecb6c..2bdfccf0e 100644 --- a/tests/inlineasm/asmfpaddsub.py +++ b/tests/inlineasm/asmfpaddsub.py @@ -12,4 +12,3 @@ def add_sub(r0, r1, r2): vmov(r0, s31) print(add_sub(100, 20, 30)) - diff --git a/tests/inlineasm/asmfpldrstr.py b/tests/inlineasm/asmfpldrstr.py index 8fa9af636..4c480671f 100644 --- a/tests/inlineasm/asmfpldrstr.py +++ b/tests/inlineasm/asmfpldrstr.py @@ -9,4 +9,3 @@ def arrayadd(r0): z = array.array("f", [2, 4, 10]) arrayadd(z) print(z[2]) - diff --git a/tests/inlineasm/asmfpmuldiv.py b/tests/inlineasm/asmfpmuldiv.py index edf9511bc..043a28e22 100644 --- a/tests/inlineasm/asmfpmuldiv.py +++ b/tests/inlineasm/asmfpmuldiv.py @@ -12,4 +12,3 @@ def muldiv(r0, r1, r2): vmov(r0, s31) print(muldiv(100, 10, 50)) - diff --git a/tests/inlineasm/asmfpsqrt.py b/tests/inlineasm/asmfpsqrt.py index f2c2d3a95..7b7d52e23 100644 --- a/tests/inlineasm/asmfpsqrt.py +++ b/tests/inlineasm/asmfpsqrt.py @@ -12,4 +12,3 @@ def sqrt_test(r0, r1): vmov(r0, s31) print(sqrt_test(256, 10)) - diff --git a/tests/inlineasm/asmspecialregs.py b/tests/inlineasm/asmspecialregs.py index edfe4c2bd..2d3b0e396 100644 --- a/tests/inlineasm/asmspecialregs.py +++ b/tests/inlineasm/asmspecialregs.py @@ -8,4 +8,3 @@ def getBASEPRI(): print(getBASEPRI()) print(getIPSR()) - |
