The code from Russ Cox's article (
https://research.swtch.com/gorace) no longer works with the modern Go compiler, because the compiler does a better job of removing redundant operations.
But here is minimal (?) working code to read/write bytes at arbitrary addresses without importing unsafe:
With today's Go runtime, if GOMAXPROCS equals 1, does that prevent this circumvention?