Skip to content

Commit bb9130c

Browse files
committed
Fix jump opcode table format
Signed-off-by: Dave Thaler <[email protected]>
1 parent 1342bd9 commit bb9130c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

isa/kernel.org/instruction-set.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -265,9 +265,9 @@ otherwise identical operations.
265265

266266
The 4-bit 'code' field encodes the operation as below, where PC is the program counter:
267267

268-
======== ===== === ========================== ============
268+
======== ===== === ========================== ========================
269269
code value src description notes
270-
======== ===== === ========================== ============
270+
======== ===== === ========================== ========================
271271
BPF_JA 0x00 0x0 PC += offset BPF_JMP only
272272
BPF_JEQ 0x10 any PC += offset if dst == src
273273
BPF_JGT 0x20 any PC += offset if dst > src unsigned
@@ -284,7 +284,7 @@ BPF_JLT 0xa0 any PC += offset if dst < src unsigned
284284
BPF_JLE 0xb0 any PC += offset if dst <= src unsigned
285285
BPF_JSLT 0xc0 any PC += offset if dst < src signed
286286
BPF_JSLE 0xd0 any PC += offset if dst <= src signed
287-
======== ===== === =========================== ============
287+
======== ===== === ========================== ========================
288288

289289
Helper functions
290290
~~~~~~~~~~~~~~~~

0 commit comments

Comments
 (0)