This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff -ruN '--exclude=build' '--exclude=*.o' '--exclude=*.pyc' '--exclude=__pycache__' a/hw/intc/apic.c b/hw/intc/apic.c | |
| --- a/hw/intc/apic.c 2025-12-23 20:48:56.000000000 +0100 | |
| +++ b/hw/intc/apic.c 2026-03-02 00:44:42.007386449 +0100 | |
| @@ -41,6 +41,42 @@ | |
| static uint32_t max_apics; | |
| static uint32_t max_apic_words; | |
| +static const char *apic_reg_name(int index) | |
| +{ | |
| + switch (index) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /bin/sh | |
| set -ex | |
| srcdir="$(dirname "$0")" | |
| test -z "$srcdir" && srcdir=. | |
| srcdir="$(cd "${srcdir}" && pwd -P)" | |
| cd "$srcdir" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /bin/sh | |
| set -ex | |
| srcdir="$(dirname "$0")" | |
| test -z "$srcdir" && srcdir=. | |
| srcdir="$(cd "${srcdir}" && pwd -P)" | |
| cd "$srcdir" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /bin/sh | |
| set -ex | |
| srcdir="$(dirname "$0")" | |
| test -z "$srcdir" && srcdir=. | |
| srcdir="$(cd "${srcdir}" && pwd -P)" | |
| cd "$srcdir" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /bin/sh | |
| set -ex | |
| srcdir="$(dirname "$0")" | |
| test -z "$srcdir" && srcdir=. | |
| cd "$srcdir" | |
| if [ -z "$TARGET" ]; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -e | |
| ARCH="$1" | |
| INTERVAL="$2" | |
| CMDLINE="$3" | |
| KERNEL="$4" | |
| if [ -z "$ARCH" ]; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE language SYSTEM "language.dtd"> | |
| <!--Based on the language defintion shared on: | |
| https://wiki.gnome.org/Projects/GtkSourceView/LanguageDefinitions?action=AttachFile&do=view&target=asm-intel.lang | |
| --> | |
| <language id="assembler" name="Assembler (Intel)" version="2.0" section="Sources"> | |
| <metadata> | |
| <property name="mimetypes">text/x-asm;text/x-assembler</property> | |
| <property name="globs">*.asm</property> | |
| </metadata> |