Commit Diff


commit - ba3c918e9c66c6242f279b7f1da59dee5528e854
commit + ae89363c306de4540f403fc9f205a1e8f3be6674
blob - /dev/null
blob + d6e21c157b50a515a08e33e31a949dafa41e08a2 (mode 644)
--- /dev/null
+++ src/libthread/NetBSD-power-asm.s
@@ -0,0 +1,16 @@
+	.globl	_tas
+_tas:
+	li	%r0, 0
+	mr	%r4, %r3
+	lis	%r5, 0xcafe
+	ori	%r5, %r5, 0xbabe
+1:
+	lwarx	%r3, %r0, %r4
+	cmpwi	%r3, 0
+	bne	2f
+	stwcx.	%r5, %r0, %r4
+	bne-	1b
+2:
+	sync
+	blr
+