repo_id string | size int64 | file_path string | content string |
|---|---|---|---|
wujique/stm32f407 | 4,899 | Utilities/FreeRTOS/Source/portable/IAR/ARM_CA5_No_GIC/portASM.s | ;/*
; * FreeRTOS Kernel V10.0.0
; * Copyright (C) 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
; *
; * Permission is hereby granted, free of charge, to any person obtaining a copy of
; * this software and associated documentation files (the "Software"), to deal in
; * the Software without restriction,... |
wujique/stm32f407 | 4,381 | Utilities/FreeRTOS/Source/portable/IAR/RX100/port_asm.s | /*
* FreeRTOS Kernel V10.0.0
* Copyright (C) 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, includ... |
wujique/stm32f407 | 5,300 | Utilities/FreeRTOS/Source/portable/IAR/ARM_CM4F_MPU/portasm.s | /*
* FreeRTOS Kernel V10.0.0
* Copyright (C) 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, includ... |
wujique/stm32f407 | 4,267 | Utilities/FreeRTOS/Source/portable/IAR/ARM_CM0/portasm.s | /*
* FreeRTOS Kernel V10.0.0
* Copyright (C) 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, includ... |
wujique/stm32f407 | 5,176 | Utilities/FreeRTOS/Source/portable/IAR/ARM_CA9/portASM.s | ;/*
; * FreeRTOS Kernel V10.0.0
; * Copyright (C) 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
; *
; * Permission is hereby granted, free of charge, to any person obtaining a copy of
; * this software and associated documentation files (the "Software"), to deal in
; * the Software without restriction,... |
wujique/stm32f407 | 5,199 | Utilities/FreeRTOS/Source/portable/IAR/RXv2/port_asm.s | /*
* FreeRTOS Kernel V10.0.0
* Copyright (C) 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, includ... |
wujique/stm32f407 | 2,924 | Utilities/FreeRTOS/Source/portable/IAR/ARM_CM3/portasm.s | /*
* FreeRTOS Kernel V10.0.0
* Copyright (C) 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, includ... |
wujique/stm32f407 | 3,850 | Utilities/FreeRTOS/Source/portable/IAR/ARM_CM7/r0p1/portasm.s | /*
* FreeRTOS Kernel V10.0.0
* Copyright (C) 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, includ... |
WukLab/LegoOS | 1,486 | arch/x86/boot/pmjump.S | /*
* Copyright (c) 2016-2020 Wuklab, Purdue University. All rights reserved.
*
* The final jump to protected-mode
*/
#include <asm/boot.h>
#include <asm/segment.h>
#include <asm/processor-flags.h>
#include <lego/linkage.h>
.text
.code16
/*
* void protected_mode_jump(u32 entrypoint, u32 bootparams);
*/
GLOBAL... |
WukLab/LegoOS | 1,228 | arch/x86/boot/bioscall.S | /*
* Copyright (c) 2016-2020 Wuklab, Purdue University. All rights reserved.
*
* "Glove box" for BIOS calls. Avoids the constant problems with BIOSes
* touching registers they shouldn't be.
*/
.code16
.section ".inittext","ax"
.globl intcall
.type intcall, @function
intcall:
/* Self-modify the INT instructi... |
WukLab/LegoOS | 8,204 | arch/x86/boot/header.S | /*
* Copyright (c) 2016-2020 Wuklab, Purdue University. All rights reserved.
*
* This is the entry point of 16-bit setup kernel. It will do the necessary
* sanitary checking and initilization, then jumps to main() of setup.
*
* To fit with GRUB2+linux+x86 boot protocol, we have to have these stuff here.
* With t... |
WukLab/LegoOS | 3,573 | arch/x86/lib/memmove_64.S | /*
* Copyright (c) 2016-2020 Wuklab, Purdue University. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any la... |
WukLab/LegoOS | 8,797 | arch/x86/lib/uaccess.S | /*
* Copyright (c) 2016-2020 Wuklab, Purdue University. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any la... |
WukLab/LegoOS | 3,805 | arch/x86/lib/rwsem.S | /*
* Copyright (c) 2016-2020 Wuklab, Purdue University. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any la... |
WukLab/LegoOS | 2,943 | arch/x86/lib/memset_64.S | /*
* Copyright (c) 2016-2020 Wuklab, Purdue University. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any la... |
WukLab/LegoOS | 2,831 | arch/x86/lib/getuser.S | /*
* Copyright (c) 2016-2020 Wuklab, Purdue University. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any la... |
WukLab/LegoOS | 1,944 | arch/x86/lib/putuser.S | /*
* Copyright (c) 2016-2020 Wuklab, Purdue University. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any la... |
WukLab/LegoOS | 3,633 | arch/x86/lib/memcpy_64.S | /*
* Copyright (c) 2016-2020 Wuklab, Purdue University. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any la... |
WukLab/LegoOS | 16,110 | arch/x86/entry/entry_64.S | /*
* entry.S contains the system-call and fault low-level handling routines.
*
* A note on terminology:
* - iret frame: Architecture defined interrupt frame from SS to RIP
* at the top of the kernel process stack.
*
* Some macro usage:
* - ENTRY/END: Define functions in the symbol table.
* - IDT_ENTRY: Def... |
WukLab/LegoOS | 5,929 | arch/x86/entry/entry_64_compat.S | /*
* Copyright (c) 2016-2020 Wuklab, Purdue University. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any la... |
WukLab/LegoOS | 5,894 | arch/x86/kernel/vmImage.lds.S | /*
* Copyright (c) 2016-2020 Wuklab, Purdue University. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any la... |
WukLab/LegoOS | 11,934 | arch/x86/kernel/head_64.S | /*
* Copyright (c) 2016-2020 Wuklab, Purdue University. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any la... |
WukLab/LegoOS | 3,848 | arch/x86/boot/compressed/head_64.S | /*
* Copyright (c) 2016-2020 Wuklab, Purdue University. All rights reserved.
*
* Note that:
* %esi points to the bootparam structure.
*/
#include <asm/msr.h>
#include <asm/boot.h>
#include <asm/segment.h>
#include <asm/processor-flags.h>
#include <lego/linkage.h>
#define NR_PGTABLE 6
.text
.code32
.section "... |
WukLab/LegoOS | 4,496 | arch/x86/realmode/rm/trampoline.S | /*
* Copyright (c) 2016-2020 Wuklab, Purdue University. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any la... |
Wunkolo/OakSim | 1,077 | SampleCode.s | .macro PADGROUP name=""
.balign 16,0xAB
.ascii "\name"
.balign 16,'='
.endm
.arm @ Emit 32-bit ARM code
#.thumb @ Emit 16-bit THUMB code, note now "IntegerDivide" collapses
PADGROUP "Square"
square:
mov r3, r0
mul r0, r3, r0
bx lr
PADGROUP "IntegerDivide"
IntegerDivide:
mov r1, #0
adds r0, r0, r0
.rept 3... |
wurlyfox/c1 | 481,764 | src/psx/r3000a.s |
.text
.macro copy_w_seq_unr src, dst, from=0, to=0x100, step=4
addiu \src, \step
sw \src, \from(\dst)
.if \to-\from
copy_w_seq_unr \src, \dst, "(\from+step)", \to, \step
.endif
.endm
# save all regs to scratch memory
.macro ssave
sw $s0, 0x1F800000
sw $s1, 0x1F... |
wurthless-elektroniks/modern-loadfare | 1,752 | ppc/hwinit_delaydbg.s | #
# patch for hwinit that outputs delay programcounter stuff to the POST lines
#
.org 0x0280
hwinit_postcount_code_start:
# stubs - code in cbbpatch.py uses these instead of going to the routines directly
b hwinit_init # +0x00
b hwinit_delay_case # +0x04
b hwinit_done # +0x0... |
wurthless-elektroniks/modern-loadfare | 3,132 | ppc/hwinit_postcount_new.s | #
# Newer HWINIT postcounting code, kept separate to avoid breaking builds
#
.text
.equ BASE_POST, 0xA2
.equ BASE_AND, 0x0100
.org 0x0280
hwinit_postcount_code_start:
# stubs - code in cbbpatch.py uses these instead of going to the routines directly
b hwinit_init # +0x00
b hwin... |
wurthless-elektroniks/modern-loadfare | 4,319 | ppc/hwinit_smc_keepalive.s | #
# hwinit keepalive code using the SMC FIFOs instead of POST bits
#
# hwinit programcounter must be past this point before sending SMC messages
# otherwise we're talking to uninitialized PCI space
.equ HWINIT_MINIMUM_PC_VALUE, 0x0300
# keepalive signal (0xA2, 0xE2) - should blink RoL LEDs and reset w... |
wurthless-elektroniks/RGH1.3 | 3,703 | ppc/hwinit_postcount_unified.s | #
# Unified HWINIT postcounting code
#
.text
.equ BASE_POST, 0xA2
.equ BASE_AND, 0x0100
.org 0x0280
hwinit_postcount_code_start:
# stubs - code in cbbpatch.py uses these instead of going to the routines directly
b hwinit_init # +0x00
b hwinit_toggle_post # +0x04
b hwinit... |
wurthless-elektroniks/RGH1.3 | 3,132 | ppc/hwinit_postcount_new.s | #
# Newer HWINIT postcounting code, kept separate to avoid breaking builds
#
.text
.equ BASE_POST, 0xA2
.equ BASE_AND, 0x0100
.org 0x0280
hwinit_postcount_code_start:
# stubs - code in cbbpatch.py uses these instead of going to the routines directly
b hwinit_init # +0x00
b hwin... |
wurthless-elektroniks/RGH1.3 | 6,648 | smc/rgh13_xenon.s | ;
; RGH1.3 code for Xenon/Elpis boards
; Actually only really useful for EXT+3
;
.include "xenondefs.inc"
RGH13_POST_6 equ gpio_dbg_led1
RGH13_POST_7 equ gpio_dbg_led2
; TODO: find safe value for this - for now we're leaving it be
RESET_WATCHDOG_TIMEOUT_TICKS equ 0xAF
CBB_HWINIT_POST6_TOGGLE_TIMEOUT equ 254
; ... |
wurthless-elektroniks/RGH1.3 | 5,715 | smc/rgh13_falcon.s | ;
; RGH1.3 code for Falcons
;
.include "falcondefs.inc"
RGH13_POST_6 equ gpio_gpu_reset_done
RGH13_POST_7 equ gpio_tiltsw_n
; timeout for normal reset watchdog
; default is 137 * 20 * 2 = 5480 ms
RESET_WATCHDOG_TIMEOUT_TICKS equ 137
; -----------------------------------------------------------------------------... |
wurthless-elektroniks/RGH1.3 | 6,389 | smc/rgh13_jasper.s | ;
; RGH1.3 code for Jasper
;
; horrible hack
ifdef JASPER_FOR_FALCON
JASPER equ 0
; from rgh13_falcon.s, but also seems to work fine without this
RESET_WATCHDOG_TIMEOUT_TICKS equ 137
else
JASPER equ 1
; timeout for normal reset watchdog
; default for jasper is 100 * 20 * 2 = 4000 ms
... |
wurthless-elektroniks/RGH1.3 | 17,783 | smc/rgh13.s | ;
; RGH1.3 common turbo SMC code
; Also includes badjasper stuff
;
ifndef JASPER
JASPER equ 0
endif
; ------------------------------------------------------------------------------------
;
; Common definitions/consts
;
; ------------------------------------------------------------------------------------
; amoun... |
wustyuyi/NamelessCotrunQuad_V1.0 | 12,284 | Chip/CMSIS/startup/startup_stm32f10x_ld.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_ld.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Low Density Devices vector table for EWARM
;... |
wustyuyi/NamelessCotrunQuad_V1.0 | 15,214 | Chip/CMSIS/startup/startup_stm32f10x_hd_vl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_hd_vl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x High Density Value Line Devices vector ta... |
wustyuyi/NamelessCotrunQuad_V1.0 | 13,207 | Chip/CMSIS/startup/startup_stm32f10x_md_vl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_md_vl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Medium Density Value Line Devices vector ... |
wustyuyi/NamelessCotrunQuad_V1.0 | 16,132 | Chip/CMSIS/startup/startup_stm32f10x_xl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_xl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x XL-Density Devices vector table for EWARM
;... |
wustyuyi/NamelessCotrunQuad_V1.0 | 12,521 | Chip/CMSIS/startup/startup_stm32f10x_md.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_md.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Medium Density Devices vector table for
;* ... |
wustyuyi/NamelessCotrunQuad_V1.0 | 15,669 | Chip/CMSIS/startup/startup_stm32f10x_hd.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_hd.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x High Density Devices vector table for EWARM
... |
wustyuyi/NamelessCotrunQuad_V1.0 | 16,119 | Chip/CMSIS/startup/startup_stm32f10x_cl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics *******************
;* File Name : startup_stm32f10x_cl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Connectivity line devices vector table for
;... |
wustyuyi/NamelessCotrunQuad_V1.0 | 12,581 | Chip/CMSIS/startup/startup_stm32f10x_ld_vl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_ld_vl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Low Density Value Line Devices vector tab... |
wustyuyi/NamelessCotrunQuad_V1.0 | 12,079 | Chip/CMSIS/startup/arm/startup_stm32f10x_ld.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_ld.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Low Density Devices vector table for MDK-ARM... |
wustyuyi/NamelessCotrunQuad_V1.0 | 15,346 | Chip/CMSIS/startup/arm/startup_stm32f10x_hd_vl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_hd_vl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x High Density Value Line Devices vector ta... |
wustyuyi/NamelessCotrunQuad_V1.0 | 13,758 | Chip/CMSIS/startup/arm/startup_stm32f10x_md_vl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_md_vl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Medium Density Value Line Devices vector ... |
wustyuyi/NamelessCotrunQuad_V1.0 | 15,597 | Chip/CMSIS/startup/arm/startup_stm32f10x_xl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_xl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x XL-Density Devices vector table for MDK-ARM ... |
wustyuyi/NamelessCotrunQuad_V1.0 | 12,458 | Chip/CMSIS/startup/arm/startup_stm32f10x_md.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_md.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Medium Density Devices vector table for MDK-... |
wustyuyi/NamelessCotrunQuad_V1.0 | 15,145 | Chip/CMSIS/startup/arm/startup_stm32f10x_hd.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_hd.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x High Density Devices vector table for MDK-AR... |
wustyuyi/NamelessCotrunQuad_V1.0 | 15,398 | Chip/CMSIS/startup/arm/startup_stm32f10x_cl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_cl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Connectivity line devices vector table for M... |
wustyuyi/NamelessCotrunQuad_V1.0 | 13,352 | Chip/CMSIS/startup/arm/startup_stm32f10x_ld_vl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_ld_vl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Low Density Value Line Devices vector tab... |
wustyuyi/NamelessCotrunQuad_V1.0 | 9,471 | Chip/CMSIS/startup/gcc/startup_stm32f10x_ld.s | /**
******************************************************************************
* @file startup_stm32f10x_ld.s
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief STM32F10x Low Density Devices vector table for RIDE7 toolchain.
* This module perf... |
wustyuyi/NamelessCotrunQuad_V1.0 | 12,040 | Chip/CMSIS/startup/gcc/startup_stm32f10x_hd_vl.s | /**
******************************************************************************
* @file startup_stm32f10x_hd_vl.s
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief STM32F10x High Density Value Line Devices vector table for RIDE7
* toolchain.
... |
wustyuyi/NamelessCotrunQuad_V1.0 | 10,659 | Chip/CMSIS/startup/gcc/startup_stm32f10x_md_vl.s | /**
******************************************************************************
* @file startup_stm32f10x_md_vl.s
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief STM32F10x Medium Density Value Line Devices vector table for RIDE7
* toolchain.... |
wustyuyi/NamelessCotrunQuad_V1.0 | 12,796 | Chip/CMSIS/startup/gcc/startup_stm32f10x_xl.s | /**
******************************************************************************
* @file startup_stm32f10x_xl.s
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief STM32F10x XL-Density Devices vector table for RIDE7 toolchain.
* This module perf... |
wustyuyi/NamelessCotrunQuad_V1.0 | 9,911 | Chip/CMSIS/startup/gcc/startup_stm32f10x_md.s | /**
******************************************************************************
* @file startup_stm32f10x_md.s
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief STM32F10x Medium Density Devices vector table for RIDE7 toolchain.
* This module p... |
wustyuyi/NamelessCotrunQuad_V1.0 | 12,695 | Chip/CMSIS/startup/gcc/startup_stm32f10x_hd.s | /**
******************************************************************************
* @file startup_stm32f10x_hd.s
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief STM32F10x High Density Devices vector table for RIDE7 toolchain.
* This module pe... |
wustyuyi/NamelessCotrunQuad_V1.0 | 12,604 | Chip/CMSIS/startup/gcc/startup_stm32f10x_cl.s | /**
******************************************************************************
* @file startup_stm32f10x_cl.s
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief STM32F10x Connectivity line Devices vector table for RIDE7 toolchain.
* This modul... |
wustyuyi/NamelessCotrunQuad_V1.0 | 10,179 | Chip/CMSIS/startup/gcc/startup_stm32f10x_ld_vl.s | /**
******************************************************************************
* @file startup_stm32f10x_ld_vl.s
* @author MCD Application Team
* @version V3.5.0
* @date 11-March-2011
* @brief STM32F10x Low Density Value Line Devices vector table for RIDE7
* toolchain.
... |
wustyuyi/NamelessCotrunQuad_V1.0 | 12,284 | Chip/CMSIS/startup/iar/startup_stm32f10x_ld.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_ld.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Low Density Devices vector table for EWARM
;... |
wustyuyi/NamelessCotrunQuad_V1.0 | 15,214 | Chip/CMSIS/startup/iar/startup_stm32f10x_hd_vl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_hd_vl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x High Density Value Line Devices vector ta... |
wustyuyi/NamelessCotrunQuad_V1.0 | 13,207 | Chip/CMSIS/startup/iar/startup_stm32f10x_md_vl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_md_vl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Medium Density Value Line Devices vector ... |
wustyuyi/NamelessCotrunQuad_V1.0 | 16,132 | Chip/CMSIS/startup/iar/startup_stm32f10x_xl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_xl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x XL-Density Devices vector table for EWARM
;... |
wustyuyi/NamelessCotrunQuad_V1.0 | 12,521 | Chip/CMSIS/startup/iar/startup_stm32f10x_md.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_md.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Medium Density Devices vector table for
;* ... |
wustyuyi/NamelessCotrunQuad_V1.0 | 15,733 | Chip/CMSIS/startup/iar/startup_stm32f10x_hd.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_hd.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x High Density Devices vector table for EWARM ... |
wustyuyi/NamelessCotrunQuad_V1.0 | 16,119 | Chip/CMSIS/startup/iar/startup_stm32f10x_cl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics *******************
;* File Name : startup_stm32f10x_cl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Connectivity line devices vector table for
;... |
wustyuyi/NamelessCotrunQuad_V1.0 | 12,581 | Chip/CMSIS/startup/iar/startup_stm32f10x_ld_vl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_ld_vl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Low Density Value Line Devices vector tab... |
wustyuyi/NamelessCotrunQuad_V1.0 | 5,710 | Chip/DSP_Lib/TransformFunctions/arm_bitreversal2.S | ;/* ----------------------------------------------------------------------
;* Copyright (C) 2010-2014 ARM Limited. All rights reserved.
;*
;* $Date: 12. March 2014
;* $Revision: V1.4.4
;*
;* Project: CMSIS DSP Library
;* Title: arm_bitreversal2.S
;*
;* Description: This is the arm_bitreversal_32 function do... |
wuxx/nanoDAP-HS | 29,171 | test/stm32f405rgt6/led_test/CORE/startup_stm32f40_41xxx.s | ;******************** (C) COPYRIGHT 2014 STMicroelectronics ********************
;* File Name : startup_stm32f40_41xxx.s
;* Author : MCD Application Team
;* @version : V1.4.0
;* @date : 04-August-2014
;* Description : STM32F40xxx/41xxx devices vector table for MDK-ARM ... |
wuxx/nanoDAP-HS | 12,079 | test/stm32f103c8t6/led_test/Libraries/CMSIS/startup/startup_stm32f10x_ld.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_ld.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Low Density Devices vector table for MDK-ARM... |
wuxx/nanoDAP-HS | 15,346 | test/stm32f103c8t6/led_test/Libraries/CMSIS/startup/startup_stm32f10x_hd_vl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_hd_vl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x High Density Value Line Devices vector ta... |
wuxx/nanoDAP-HS | 13,758 | test/stm32f103c8t6/led_test/Libraries/CMSIS/startup/startup_stm32f10x_md_vl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_md_vl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Medium Density Value Line Devices vector ... |
wuxx/nanoDAP-HS | 15,597 | test/stm32f103c8t6/led_test/Libraries/CMSIS/startup/startup_stm32f10x_xl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_xl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x XL-Density Devices vector table for MDK-ARM ... |
wuxx/nanoDAP-HS | 12,458 | test/stm32f103c8t6/led_test/Libraries/CMSIS/startup/startup_stm32f10x_md.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_md.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Medium Density Devices vector table for MDK-... |
wuxx/nanoDAP-HS | 15,145 | test/stm32f103c8t6/led_test/Libraries/CMSIS/startup/startup_stm32f10x_hd.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_hd.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x High Density Devices vector table for MDK-AR... |
wuxx/nanoDAP-HS | 15,398 | test/stm32f103c8t6/led_test/Libraries/CMSIS/startup/startup_stm32f10x_cl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_cl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Connectivity line devices vector table for M... |
wuxx/nanoDAP-HS | 13,352 | test/stm32f103c8t6/led_test/Libraries/CMSIS/startup/startup_stm32f10x_ld_vl.s | ;******************** (C) COPYRIGHT 2011 STMicroelectronics ********************
;* File Name : startup_stm32f10x_ld_vl.s
;* Author : MCD Application Team
;* Version : V3.5.0
;* Date : 11-March-2011
;* Description : STM32F10x Low Density Value Line Devices vector tab... |
wuxx/icesugar | 2,656 | src/advanced/picorv32/firmware/custom_ops.S | // This is free and unencumbered software released into the public domain.
//
// Anyone is free to copy, modify, publish, use, compile, sell, or
// distribute this software, either in source code form or as a compiled
// binary, for any purpose, commercial or non-commercial, and by any
// means.
#define regnum_q0 0
... |
wuxx/icesugar | 9,508 | src/advanced/picorv32/firmware/start.S | // This is free and unencumbered software released into the public domain.
//
// Anyone is free to copy, modify, publish, use, compile, sell, or
// distribute this software, either in source code form or as a compiled
// binary, for any purpose, commercial or non-commercial, and by any
// means.
#define ENABLE_QREGS
#... |
wuxx/icesugar | 2,431 | src/advanced/picorv32/picosoc/start.s | .section .text
start:
# zero-initialize register file
addi x1, zero, 0
# x2 (sp) is initialized by reset
addi x3, zero, 0
addi x4, zero, 0
addi x5, zero, 0
addi x6, zero, 0
addi x7, zero, 0
addi x8, zero, 0
addi x9, zero, 0
addi x10, zero, 0
addi x11, zero, 0
addi x12, zero, 0
addi x13, zero, 0
addi x14, zero, 0
addi... |
wuxx/icesugar | 2,651 | src/advanced/picorv32/tests/xor.S | # See LICENSE for license details.
#*****************************************************************************
# xor.S
#-----------------------------------------------------------------------------
#
# Test xor instruction.
#
#include "riscv_test.h"
#include "test_macros.h"
RVTEST_RV32U
RVTEST_CODE_BEGIN
#----... |
wuxx/icesugar | 2,786 | src/advanced/picorv32/tests/sub.S | # See LICENSE for license details.
#*****************************************************************************
# sub.S
#-----------------------------------------------------------------------------
#
# Test sub instruction.
#
#include "riscv_test.h"
#include "test_macros.h"
RVTEST_RV32U
RVTEST_CODE_BEGIN
#----... |
wuxx/icesugar | 2,180 | src/advanced/picorv32/tests/lw.S | # See LICENSE for license details.
#*****************************************************************************
# lw.S
#-----------------------------------------------------------------------------
#
# Test lw instruction.
#
#include "riscv_test.h"
#include "test_macros.h"
RVTEST_RV32U
RVTEST_CODE_BEGIN
#------... |
wuxx/icesugar | 2,538 | src/advanced/picorv32/tests/bgeu.S | # See LICENSE for license details.
#*****************************************************************************
# bgeu.S
#-----------------------------------------------------------------------------
#
# Test bgeu instruction.
#
#include "riscv_test.h"
#include "test_macros.h"
RVTEST_RV32U
RVTEST_CODE_BEGIN
#--... |
wuxx/icesugar | 2,056 | src/advanced/picorv32/tests/slti.S | # See LICENSE for license details.
#*****************************************************************************
# slti.S
#-----------------------------------------------------------------------------
#
# Test slti instruction.
#
#include "riscv_test.h"
#include "test_macros.h"
RVTEST_RV32U
RVTEST_CODE_BEGIN
#--... |
wuxx/icesugar | 3,372 | src/advanced/picorv32/tests/sll.S | # See LICENSE for license details.
#*****************************************************************************
# sll.S
#-----------------------------------------------------------------------------
#
# Test sll instruction.
#
#include "riscv_test.h"
#include "test_macros.h"
RVTEST_RV32U
RVTEST_CODE_BEGIN
#----... |
wuxx/icesugar | 2,185 | src/advanced/picorv32/tests/addi.S | # See LICENSE for license details.
#*****************************************************************************
# addi.S
#-----------------------------------------------------------------------------
#
# Test addi instruction.
#
#include "riscv_test.h"
#include "test_macros.h"
RVTEST_RV32U
RVTEST_CODE_BEGIN
#--... |
wuxx/icesugar | 1,680 | src/advanced/picorv32/tests/andi.S | # See LICENSE for license details.
#*****************************************************************************
# andi.S
#-----------------------------------------------------------------------------
#
# Test andi instruction.
#
#include "riscv_test.h"
#include "test_macros.h"
RVTEST_RV32U
RVTEST_CODE_BEGIN
#--... |
wuxx/icesugar | 2,960 | src/advanced/picorv32/tests/mulhu.S | # See LICENSE for license details.
#*****************************************************************************
# mulhu.S
#-----------------------------------------------------------------------------
#
# Test mulhu instruction.
#
#include "riscv_test.h"
#include "test_macros.h"
RVTEST_RV32U
RVTEST_CODE_BEGIN
#... |
wuxx/icesugar | 2,182 | src/advanced/picorv32/tests/lhu.S | # See LICENSE for license details.
#*****************************************************************************
# lhu.S
#-----------------------------------------------------------------------------
#
# Test lhu instruction.
#
#include "riscv_test.h"
#include "test_macros.h"
RVTEST_RV32U
RVTEST_CODE_BEGIN
#----... |
wuxx/icesugar | 2,633 | src/advanced/picorv32/tests/and.S | # See LICENSE for license details.
#*****************************************************************************
# and.S
#-----------------------------------------------------------------------------
#
# Test and instruction.
#
#include "riscv_test.h"
#include "test_macros.h"
RVTEST_RV32U
RVTEST_CODE_BEGIN
#----... |
wuxx/icesugar | 2,366 | src/advanced/picorv32/tests/bltu.S | # See LICENSE for license details.
#*****************************************************************************
# bltu.S
#-----------------------------------------------------------------------------
#
# Test bltu instruction.
#
#include "riscv_test.h"
#include "test_macros.h"
RVTEST_RV32U
RVTEST_CODE_BEGIN
#--... |
wuxx/icesugar | 2,530 | src/advanced/picorv32/tests/sh.S | # See LICENSE for license details.
#*****************************************************************************
# sh.S
#-----------------------------------------------------------------------------
#
# Test sh instruction.
#
#include "riscv_test.h"
#include "test_macros.h"
RVTEST_RV32U
RVTEST_CODE_BEGIN
#------... |
wuxx/icesugar | 3,367 | src/advanced/picorv32/tests/srl.S | # See LICENSE for license details.
#*****************************************************************************
# srl.S
#-----------------------------------------------------------------------------
#
# Test srl instruction.
#
#include "riscv_test.h"
#include "test_macros.h"
RVTEST_RV32U
RVTEST_CODE_BEGIN
#----... |
wuxx/icesugar | 2,490 | src/advanced/picorv32/tests/sb.S | # See LICENSE for license details.
#*****************************************************************************
# sb.S
#-----------------------------------------------------------------------------
#
# Test sb instruction.
#
#include "riscv_test.h"
#include "test_macros.h"
RVTEST_RV32U
RVTEST_CODE_BEGIN
#------... |
wuxx/icesugar | 2,028 | src/advanced/picorv32/tests/beq.S | # See LICENSE for license details.
#*****************************************************************************
# beq.S
#-----------------------------------------------------------------------------
#
# Test beq instruction.
#
#include "riscv_test.h"
#include "test_macros.h"
RVTEST_RV32U
RVTEST_CODE_BEGIN
#----... |
wuxx/icesugar | 2,923 | src/advanced/picorv32/tests/mulh.S | # See LICENSE for license details.
#*****************************************************************************
# mulh.S
#-----------------------------------------------------------------------------
#
# Test mulh instruction.
#
#include "riscv_test.h"
#include "test_macros.h"
RVTEST_RV32U
RVTEST_CODE_BEGIN
#--... |
wuxx/icesugar | 1,669 | src/advanced/picorv32/tests/ori.S | # See LICENSE for license details.
#*****************************************************************************
# ori.S
#-----------------------------------------------------------------------------
#
# Test ori instruction.
#
#include "riscv_test.h"
#include "test_macros.h"
RVTEST_RV32U
RVTEST_CODE_BEGIN
#----... |
wuxx/icesugar | 2,174 | src/advanced/picorv32/tests/lbu.S | # See LICENSE for license details.
#*****************************************************************************
# lbu.S
#-----------------------------------------------------------------------------
#
# Test lbu instruction.
#
#include "riscv_test.h"
#include "test_macros.h"
RVTEST_RV32U
RVTEST_CODE_BEGIN
#----... |
wuxx/icesugar | 2,568 | src/advanced/picorv32/tests/sw.S | # See LICENSE for license details.
#*****************************************************************************
# sw.S
#-----------------------------------------------------------------------------
#
# Test sw instruction.
#
#include "riscv_test.h"
#include "test_macros.h"
RVTEST_RV32U
RVTEST_CODE_BEGIN
#------... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.