I guess you are not really only interested in uint8_t, but other types as
well. You can match multiple types concisely as illustrated below:
@r@
expression b;
typedef uint8_t;
typedef uint16_t;
{volatile uint8_t,volatile uint8_t} a;
position p1;
@@
a at p1 = b;
---
julia