; Example program for bit operations ; ; Peter Christen, 5 April 2004 ; Msk: data %00000 111111 00000; /* 2016 */ CMsk: data %11111 000000 11111; /* -2017 */ tmp: block 1 ; /* `temporary variable' */ a: data %1010 1010 1010 1010 b: data %1100 1100 1100 1100 res: block 1 main: load a and Msk store tmp load b and CMsk or tmp store res trap #1 end main