diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-11-18 22:24:33 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-11-18 22:24:33 +0900 |
commit | 3b0c3b8206964b85bf3716c962d26dd15c4f285f (patch) | |
tree | 2f0973dbf96c2892d19a55b6f846f130e7399a48 /debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/d/40021-tst01.d | |
parent | ff287d2f48d4f4253bf84f19bd7fe937b61ede45 (diff) | |
download | extra-dependencies-3b0c3b8206964b85bf3716c962d26dd15c4f285f.tar.gz extra-dependencies-3b0c3b8206964b85bf3716c962d26dd15c4f285f.zip |
It is no longer necessary to maintain a customize trinity version.
Upstream version can be used as is.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/d/40021-tst01.d')
-rw-r--r-- | debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/d/40021-tst01.d | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/d/40021-tst01.d b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/d/40021-tst01.d deleted file mode 100644 index a2f63fc0..00000000 --- a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/d/40021-tst01.d +++ /dev/null @@ -1,27 +0,0 @@ -package void writeRegister(int aRegisterOffset, ushort aValue) -in -{ - assert(aRegisterOffset >= 0); - assert(aRegisterOffset < IMAGE_SIZE); -} -body { - int idx = aRegisterOffset / 2; - - mMemCache[idx] = aValue; - uint readback; - uint st; - uint st2; - - volatile { - mMemImage[idx] = aValue; - //readback = (cast(uint*)mMemImage.ptr)[ idx/2 ]; - //st = mMemImage[ 0x28/2 ]; - //st2 = mMemImage[ 0x2A/2 ]; - } - //if( aValue != readback ) - { - //debug(IRQ) writefln( "writeRegister %04x, %04x", aRegisterOffset, aValue); - } - // comment -} -// |