fengjian

Results 4 comments of fengjian

确实是个形容词。 放到v里面不合适

#define SWI_SYSCALL 0x80 /* load the syscall number into r12 and trap */ #define DO_SYSCALL(num) \ .if (((num) & 0xff) == (num)) ;\ mov r12, #(num) ;\ .elseif (((num) &...

https://www.theiphonewiki.com/wiki/Kernel_Syscalls Unix Usage MOV IP, #x // number from following list into Intraprocedural, a.k.a. r12 on arm32 and x16 on arm64 SVC 0x80 // Formerly, SWI (software interrupt) For example,...

@dr-orlovsky Hi If you want to implement BLAKE3 opcode, I recommend using [BLAKE3](https://github.com/BLAKE3-team/BLAKE3). The opcode is defined as follows: ``` // ### Hashing (BPDIGEST) pub const INSTR_RIPEMD: u8 = 0b10_000_000;...