From 80c7e6da9f25e86a50f84f46a5e0ab6c6f624652 Mon Sep 17 00:00:00 2001 From: Cypher Pepe <125112044+cypherpepe@users.noreply.github.com> Date: Thu, 2 Jan 2025 15:32:47 +0300 Subject: [PATCH] v.parser: fix broken link to `riscv-card.pdf` (#23343) --- vlib/v/parser/parser.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/v/parser/parser.v b/vlib/v/parser/parser.v index 4b2416bf5cb147..1ebdf85f2abe55 100644 --- a/vlib/v/parser/parser.v +++ b/vlib/v/parser/parser.v @@ -1303,7 +1303,7 @@ fn (mut p Parser) asm_stmt(is_top_level bool) ast.AsmStmt { } mut local_labels := []string{} - // riscv: https://github.com/jameslzhu/riscv-card/blob/master/riscv-card.pdf + // riscv: https://github.com/jameslzhu/riscv-card/releases/download/latest/riscv-card.pdf // x86: https://www.felixcloutier.com/x86/ // arm: https://developer.arm.com/documentation/dui0068/b/arm-instruction-reference mut templates := []ast.AsmTemplate{}