git @ Cat's Eye Technologies Matchbox / master eg / basic-race.mbox
master

Tree @master (Download .tar.gz)

basic-race.mbox @masterraw · history · blame

DESC

; Basic example of a pair of programs which have a
; race condition, because their use of shared memory
; is not atomic.  See 'petersons-no-race' for a cure.
;

PROG 0
MOV M0, R0
INC R0
MOV R0, M0

PROG 1
MOV M0, R0
INC R0
MOV R0, M0