Merge pull request #1065 from shenki/microwatt-picolibc-family

microwatt: Fix family property
This commit is contained in:
enjoy-digital 2021-10-12 09:08:57 +02:00 committed by GitHub
commit f93b6b9f27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ CPU_VARIANTS = ["standard", "standard+ghdl", "standard+irq", "standard+ghdl+irq"
# Microwatt ---------------------------------------------------------------------------------------- # Microwatt ----------------------------------------------------------------------------------------
class Microwatt(CPU): class Microwatt(CPU):
family = "powerpc" family = "ppc64"
name = "microwatt" name = "microwatt"
human_name = "Microwatt" human_name = "Microwatt"
variants = CPU_VARIANTS variants = CPU_VARIANTS