Lines Matching full:supervisor
58 | or supervisor application space. The examples below use simple "move"
59 | instructions for supervisor mode applications and call _copyin()/_copyout()
76 | Writes to data memory while in supervisor mode.
79 | a0 - supervisor source address
82 | 0x4(%a6),bit5 - 1 = supervisor mode, 0 = user mode
89 btst #0x5,0x4(%a6) | check for supervisor state
107 | Reads from data/instruction memory while in supervisor mode.
111 | a1 - supervisor destination address
113 | 0x4(%a6),bit5 - 1 = supervisor mode, 0 = user mode
122 btst #0x5,0x4(%a6) | check for supervisor state
144 | 0x4(%a6),bit5 - 1 = supervisor mode, 0 = user mode
153 btst #0x5,0x4(%a6) | check for supervisor state
154 bnes dmrbs | supervisor
167 | 0x4(%a6),bit5 - 1 = supervisor mode, 0 = user mode
178 | 0x4(%a6),bit5 - 1 = supervisor mode, 0 = user mode
189 btst #0x5,0x4(%a6) | check for supervisor state
190 bnes dmrws | supervisor
203 | 0x4(%a6),bit5 - 1 = supervisor mode, 0 = user mode
214 | 0x4(%a6),bit5 - 1 = supervisor mode, 0 = user mode
224 btst #0x5,0x4(%a6) | check for supervisor state
225 bnes dmrls | supervisor
239 | 0x4(%a6),bit5 - 1 = supervisor mode, 0 = user mode
246 btst #0x5,0x4(%a6) | check for supervisor state
247 bnes dmwbs | supervisor
261 | 0x4(%a6),bit5 - 1 = supervisor mode, 0 = user mode
268 btst #0x5,0x4(%a6) | check for supervisor state
269 bnes dmwws | supervisor
285 | 0x4(%a6),bit5 - 1 = supervisor mode, 0 = user mode
292 btst #0x5,0x4(%a6) | check for supervisor state
293 bnes dmwls | supervisor
323 move.b (%a0)+,%d1 | fetch supervisor byte
342 move.b %d1,(%a1)+ | write supervisor byte