repo_id string | size int64 | file_path string | content string |
|---|---|---|---|
wyvernSemi/riscV | 1,132 | HDL/test/test_cases/sra.s | .file "test.s"
.text
.align 4
_start: .global _start
.global main
main: # Delta changes
addi x18, x0, 0x123 # x18 <= 0x00000123
slli x18, x18, 12 # x18 <= 0x00123000
addi x18, x18, 0x456 # x18 <= 0x00123... |
wyvernSemi/riscV | 1,476 | HDL/test/test_cases/and.s | .file "test.s"
.text
.align 4
_start: .global _start
.global main
main: # Delta changes
addi x9, x0, 0x555 # x9 <= 0x00000555
slli x9, x9, 12 # x9 <= 0x00555000
addi x9, x9, 0x555 # x9 <= 0x00555... |
wyvernSemi/riscV | 2,111 | HDL/test/test_cases/slt.s | .file "test.s"
.text
.align 4
_start: .global _start
.global main
main: # Delta changes
addi x4, x0, 122 # x4 <= 122
addi x3, x0, 123 # x3 <= 123
slt x5, x4, x3 # x5 <= 1
addi x3, x0... |
wyvernSemi/riscV | 1,233 | HDL/test/test_cases/slti.s | .file "test.s"
.text
.align 4
_start: .global _start
.global main
main: # Delta changes
addi x4, x0, 122 # x4 <= 122
slti x5, x4, 123 # x5 <= 1
slti x5, x4, 122 # x5 <= 0
slti x5, x4, ... |
wyvernSemi/riscV | 1,524 | HDL/test/test_cases/or.s | .file "test.s"
.text
.align 4
_start: .global _start
.global main
main: # Delta changes
addi x9, x0, 0x555 # x9 <= 0x00000555
slli x9, x9, 12 # x9 <= 0x00555000
addi x9, x9, 0x555 # x9 <= 0x00555... |
wyvernSemi/riscV | 1,122 | HDL/test/test_cases/srl.s | .file "test.s"
.text
.align 4
_start: .global _start
.global main
main: # Delta changes
addi x16, x0, 0x123 # x16 <= 0x00000123
slli x16, x16, 12 # x16 <= 0x00123000
addi x16, x16, 0x456 # x16 <= 0x00123... |
wyvernSemi/riscV | 1,490 | iss/test/example/example_pseudo.s | #
# Example RISC-V assembly program
#
# -----------------------------------------
# Program section (known as text)
# -----------------------------------------
.text
# Start symbol (must be present), exported as a global symbol.
_start: .global _start
# Export main as a global ... |
wyvernSemi/riscV | 1,699 | iss/test/example/example.s | #
# Example RISC-V assembly program
#
# -----------------------------------------
# Program section (known as text)
# -----------------------------------------
.text
# Start symbol (must be present), exported as a global symbol.
_start: .global _start
# Export main as a global ... |
wyvernSemi/riscV | 1,028 | iss/test/example/template.s | #
# Template for RISC-V assembly language
#
# -----------------------------------------
# Program section (known as text)
# -----------------------------------------
.text
# Start symbol (must be present), exported as a global symbol.
_start: .global _start
# Export main as a global sy... |
wyvernSemi/riscV | 3,678 | iss/test/interrupt/test.s | # =============================================================
#
# Copyright (c) 2021 Simon Southwell. All rights reserved.
#
# Date: 5th August 2021
#
# Test program to test external interrupts
#
# This file is part of the base RISC-V instruction set simulator
# (rv32_cpu).
#
# This code is free software: you c... |
X11Libre/xserver | 1,923 | hw/xfree86/os-support/solaris/solaris-amd64.S | / Copyright (c) 2005, Oracle and/or its affiliates.
/
/ 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, including without limitation
/ the rights to use, copy, modify, mer... |
X11Libre/xserver | 1,944 | hw/xfree86/os-support/solaris/solaris-ia32.S | / Copyright (c) 2004, Oracle and/or its affiliates.
/
/ 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, including without limitation
/ the rights to use, copy, modify, mer... |
X11Libre/xserver | 3,102 | hw/xfree86/os-support/solaris/sun_inout.s | / $XFree86: xc/programs/Xserver/hw/xfree86/os-support/sunos/sun_inout.s,v 1.1 2001/05/28 02:42:31 tsi Exp $
/
/ Copyright 1994-2001 The XFree86 Project, Inc. All Rights Reserved.
/
/ Permission is hereby granted, free of charge, to any person obtaining a copy
/ of this software and associated documentation files (the ... |
X11Libre/xserver | 3,946 | hw/xfree86/os-support/solaris/solaris-sparcv8plus.S | /* Copyright (c) 2004, Oracle and/or its affiliates.
*
* 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, including without limitation
* the rights to use, copy, modif... |
X1Plus/X1Plus | 8,338 | kexec-tools/kexec_test/kexec_test.S | /*
* kexec: Linux boots Linux
*
* Copyright (C) 2003,2004 Eric Biederman (ebiederm@xmission.com)
*
* 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 (version 2 of the License).
*
* This p... |
X1Plus/X1Plus | 18,589 | kexec-tools/kexec_test/kexec_test16.S | /*
* kexec: Linux boots Linux
*
* Copyright (C) 2003,2004 Eric Biederman (ebiederm@xmission.com)
*
* 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 (version 2 of the License).
*
* This p... |
X1Plus/X1Plus | 1,708 | kexec-tools/kexec_test/x86-setup-legacy-pic.S | /*
* kexec: Linux boots Linux
*
* Copyright (C) 2003,2004 Eric Biederman (ebiederm@xmission.com)
*
* 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 (version 2 of the License).
*
* This p... |
X1Plus/X1Plus | 1,939 | kexec-tools/purgatory/arch/ia64/entry.S | /*
* purgatory: setup code
*
* Copyright (C) 2005-2006 Zou Nan hai (nanhai.zou@intel.com)
*
* 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 (version 2 of the License).
*
* This program... |
X1Plus/X1Plus | 1,649 | kexec-tools/purgatory/arch/i386/setup-x86.S | /*
* purgatory: setup code
*
* Copyright (C) 2003,2004 Eric Biederman (ebiederm@xmission.com)
*
* 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 (version 2 of the License).
*
* This pro... |
X1Plus/X1Plus | 4,728 | kexec-tools/purgatory/arch/i386/entry32-16-debug.S | /*
* kexec: Linux boots Linux
*
* Copyright (C) 2003,2004 Eric Biederman (ebiederm@xmission.com)
*
* 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 (version 2 of the License).
*
* This p... |
X1Plus/X1Plus | 3,790 | kexec-tools/purgatory/arch/i386/entry32-16.S | /*
* kexec: Linux boots Linux
*
* Copyright (C) 2003,2004 Eric Biederman (ebiederm@xmission.com)
*
* 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 (version 2 of the License).
*
* This p... |
X1Plus/X1Plus | 2,593 | kexec-tools/purgatory/arch/i386/entry32.S | /*
* purgatory: setup code
*
* Copyright (C) 2003,2004 Eric Biederman (ebiederm@xmission.com)
*
* 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 (version 2 of the License).
*
* This pro... |
X1Plus/X1Plus | 1,458 | kexec-tools/purgatory/arch/i386/stack.S | /*
* purgatory: stack
*
* Copyright (C) 2003,2004 Eric Biederman (ebiederm@xmission.com)
*
* 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 (version 2 of the License).
*
* This program ... |
X1Plus/X1Plus | 2,328 | kexec-tools/purgatory/arch/i386/compat_x86_64.S | /*
* kexec: Linux boots Linux
*
* Copyright (C) 2003,2004,2005 Eric Biederman (ebiederm@xmission.com)
*
* 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 (version 2 of the License).
*
* T... |
X1Plus/X1Plus | 3,034 | kexec-tools/purgatory/arch/ppc/v2wrap_32.S | #
# kexec: Linux boots Linux
#
# Copyright (C) 2004 - 2005, Milton D Miller II, IBM Corporation
# Copyright (C) 2006, Mohan Kumar M (mohan@in.ibm.com), IBM Corporation
#
# 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
# ... |
X1Plus/X1Plus | 8,066 | kexec-tools/purgatory/arch/ppc/misc.S | /*
* This file contains miscellaneous low-level functions.
* Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
*
* Largely rewritten by Cort Dougan (cort@cs.nmt.edu)
* and Paul Mackerras.
*
* Rewrittten to work with /sbin/kexec 20 December 2004 Eric Biederman
*
* This program is free software; you can... |
X1Plus/X1Plus | 3,796 | kexec-tools/purgatory/arch/x86_64/entry64-32.S | /*
* purgatory: setup code
*
* Copyright (C) 2003,2004 Eric Biederman (ebiederm@xmission.com)
*
* 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 (version 2 of the License).
*
* This pro... |
X1Plus/X1Plus | 1,682 | kexec-tools/purgatory/arch/x86_64/setup-x86_64.S | /*
* purgatory: setup code
*
* Copyright (C) 2003,2004 Eric Biederman (ebiederm@xmission.com)
*
* 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 (version 2 of the License).
*
* This pro... |
X1Plus/X1Plus | 2,471 | kexec-tools/purgatory/arch/x86_64/entry64.S | /*
* kexec: Linux boots Linux
*
* Copyright (C) 2003,2004 Eric Biederman (ebiederm@xmission.com)
*
* 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 (version 2 of the License).
*
* This p... |
X1Plus/X1Plus | 1,708 | kexec-tools/purgatory/arch/x86_64/stack.S | /*
* purgatory: stack
*
* Copyright (C) 2003,2004 Eric Biederman (ebiederm@xmission.com)
*
* 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 (version 2 of the License).
*
* This program ... |
X1Plus/X1Plus | 4,079 | kexec-tools/purgatory/arch/ppc64/v2wrap.S | #
# kexec: Linux boots Linux
#
# Copyright (C) 2004 - 2005, Milton D Miller II, IBM Corporation
# Copyright (C) 2006, Mohan Kumar M (mohan@in.ibm.com), IBM Corporation
#
# 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
# ... |
X1Plus/X1Plus | 4,355 | kexec-tools/purgatory/arch/ppc64/misc.S | /*
* This is from linux/arch/powerpc/lib/crtsavres.S:
*
* Special support for eabi and SVR4
*
* Copyright (C) 1995, 1996, 1998, 2000, 2001 Free Software Foundation, Inc.
* Copyright 2008 Freescale Semiconductor, Inc.
* Written By Michael Meissner
*
* Based on gcc/config/rs6000/crtsavres.asm from gcc
* 6... |
X1Plus/X1Plus | 3,732 | kexec-tools/kexec/arch/ppc/ppc-setup-dol.S | /*
* ppc-setup-dol.S - setup glue for Nintendo's GameCube
* Copyright (C) 2004 Albert Herranz
*
* This source code is licensed under the GNU General Public License,
* Version 2. See the file COPYING for more details.
*/
#include "ppc_asm.h"
.data
.globl setup_dol_start
setup_dol_start:
/* Try to reproduce ... |
X1Plus/X1Plus | 1,522 | kexec-mod/kernel/arch/arm64/cpu-reset.S | /*
* CPU reset routines
*
* Copyright (C) 2001 Deep Blue Solutions Ltd.
* Copyright (C) 2012 ARM Ltd.
* Copyright (C) 2015 Huawei Futurewei Technologies.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by t... |
X1Plus/X1Plus | 2,761 | kexec-mod/kernel/arch/arm64/hyp-shim.S | /*
* Hypervisor stub shim
*
* Copyright (C) 2012 ARM Ltd.
* Author: Marc Zyngier <marc.zyngier@arm.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* This program is ... |
X65/firmware | 6,296 | src/ria/cgia/cgia_sprites.S | #include "hardware/regs/addressmap.h"
.syntax unified
.cpu cortex-m33
.thumb
.section .scratch_x, "aw", %nobits
.align 4
sprite_colors:
.space 4*4 // Reserve 4 words for the sprites color array
// Put every function in its own ELF section, to permit linker GC
.macro decl_func name
.section .scratch_x.\name, "ax"... |
X65/firmware | 15,833 | src/ria/cgia/cgia_encode.S | #include "hardware/regs/addressmap.h"
#include "hardware/regs/sio.h"
// Offsets suitable for ldr/str (must be <= 0x7c):
#define ACCUM0_OFFS (SIO_INTERP0_ACCUM0_OFFSET - SIO_INTERP0_ACCUM0_OFFSET)
#define ACCUM1_OFFS (SIO_INTERP0_ACCUM1_OFFSET - SIO_INTERP0_ACCUM0_OFFSET)
#define PEEK0_OFFS (SIO_IN... |
x653/xv6-riscv-fpga | 3,096 | xv6-riscv/kernel/kernelvec32.S | #
# interrupts and exceptions while in supervisor
# mode come here.
#
# the current stack is a kernel stack.
# push all registers, call kerneltrap().
# when kerneltrap() returns, restore registers, return.
#
.globl kerneltrap
.globl kernelvec
.align 4
kern... |
x653/xv6-riscv-fpga | 3,814 | xv6-riscv/kernel/trampoline32.S | #
# low-level code to handle traps from user space into
# the kernel, and returns from kernel to user.
#
# the kernel maps the page holding this code
# at the same virtual address (TRAMPOLINE)
# in user and kernel space so that it continues
# to work when ... |
x893/CarTracker | 10,713 | Firmware/src/startup_stm32f10x_md_vl.s | ;* <<< Use Configuration Wizard in Context Menu >>>
; Amount of memory (in bytes) allocated for Stack
; Tailor this value to your application needs
; <h> Stack Configuration
; <o> Stack Size (in Bytes) <0x0-0xFFFFFFFF:8>
; </h>
Stack_Size EQU 0x00000800
AREA STACK, NOINIT, READWRITE, ... |
x893/CarTracker | 12,701 | Firmware/src/startup_stm32l1xx_md.s | ;******************** (C) COPYRIGHT 2012 STMicroelectronics ********************
;* File Name : startup_stm32l1xx_md.s
;* Author : MCD Application Team
;* Version : V1.1.1
;* Date : 09-March-2012
;* Description : STM32L1xx Ultra Low Power Medium-density Devices vecto... |
x893/CarTracker | 13,561 | Firmware/src/startup_stm32f.s |
IF :DEF:BL_VERSION
Stack_Size EQU 0x000400
ELSE
Stack_Size EQU 0x000100
ENDIF
EXPORT Stack_Mem
AREA STACK, NOINIT, READWRITE, ALIGN = 3
Stack_Mem SPACE Stack_Size
__initial_sp
Heap_Size EQU 0x00000000
AREA HEAP, NOINIT, READWRITE, ALIGN = 3
__heap_base
Heap_Mem SPACE Heap_Size
__heap_l... |
x893/CarTracker | 9,471 | Firmware/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/gcc_ride7/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... |
x893/CarTracker | 12,040 | Firmware/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/gcc_ride7/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.
... |
x893/CarTracker | 10,659 | Firmware/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/gcc_ride7/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.... |
x893/CarTracker | 12,796 | Firmware/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/gcc_ride7/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... |
x893/CarTracker | 9,911 | Firmware/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/gcc_ride7/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... |
x893/CarTracker | 12,695 | Firmware/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/gcc_ride7/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... |
x893/CarTracker | 12,604 | Firmware/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/gcc_ride7/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... |
x893/CarTracker | 10,179 | Firmware/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/gcc_ride7/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.
... |
x893/CarTracker | 12,079 | Firmware/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/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... |
x893/CarTracker | 15,346 | Firmware/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/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... |
x893/CarTracker | 13,758 | Firmware/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/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 ... |
x893/CarTracker | 15,597 | Firmware/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/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 ... |
x893/CarTracker | 12,458 | Firmware/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/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-... |
x893/CarTracker | 15,145 | Firmware/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/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... |
x893/CarTracker | 15,398 | Firmware/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/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... |
x893/CarTracker | 13,352 | Firmware/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/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... |
x893/CarTracker | 9,479 | Firmware/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/TrueSTUDIO/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 Atollic toolchain.
* This module pe... |
x893/CarTracker | 11,788 | Firmware/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/TrueSTUDIO/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 Atollic
* toolchain... |
x893/CarTracker | 10,349 | Firmware/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/TrueSTUDIO/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 Atollic
* toolcha... |
x893/CarTracker | 12,785 | Firmware/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/TrueSTUDIO/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 TrueSTUDIO toolchain.
* This module... |
x893/CarTracker | 9,912 | Firmware/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/TrueSTUDIO/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 Atollic toolchain.
* This module... |
x893/CarTracker | 12,123 | Firmware/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/TrueSTUDIO/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 Atollic toolchain.
* This module p... |
x893/CarTracker | 12,131 | Firmware/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/TrueSTUDIO/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 Atollic
* toolchain.
* ... |
x893/CarTracker | 9,883 | Firmware/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/startup/TrueSTUDIO/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 Atollic toolchain.
* ... |
x893/CarTracker | 12,284 | Firmware/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/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
;... |
x893/CarTracker | 15,214 | Firmware/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/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... |
x893/CarTracker | 13,207 | Firmware/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/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 ... |
x893/CarTracker | 16,132 | Firmware/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/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
;... |
x893/CarTracker | 12,521 | Firmware/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/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
;* ... |
x893/CarTracker | 15,733 | Firmware/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/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 ... |
x893/CarTracker | 16,119 | Firmware/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/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
;... |
x893/CarTracker | 12,581 | Firmware/Libraries/CMSIS/CM3/DeviceSupport/ST/STM32F10x/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... |
x893/CNC-STM32 | 30,549 | src/libhardware/STM32F429I-DISCO/startup_stm32f429_439xx.s | ;******************** (C) COPYRIGHT 2013 STMicroelectronics ********************
;* File Name : startup_stm32f429_439xx.s
;* Author : MCD Application Team
;* Version : V1.3.0
;* Date : 08-November-2013
;* Description : STM32F429xx/439xx devices vector table for MDK-A... |
x893/CMSIS-DAP | 24,476 | Validation/MDK/startup_MK20D5.s | ;/*****************************************************************************
; * @file: startup_MK20D5.s
; * @purpose: CMSIS Cortex-M4 Core Device Startup File for the
; * MK20D5
; * @version: 1.0
; * @date: 2011-12-15
; *
; * Copyright: 1997 - 2012 Freescale Semiconductor, Inc. All Rights Reserved.
... |
x893/CMSIS-DAP | 24,476 | Firmware/OpenSDA/startup_MK20D5.s | ;/*****************************************************************************
; * @file: startup_MK20D5.s
; * @purpose: CMSIS Cortex-M4 Core Device Startup File for the
; * MK20D5
; * @version: 1.0
; * @date: 2011-12-15
; *
; * Copyright: 1997 - 2012 Freescale Semiconductor, Inc. All Rights Reserved.
... |
x893/CNC-STM32 | 15,145 | src/libhardware/STM32F10X-BOARD/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... |
x893/CMSIS-DAP | 12,782 | Firmware/LPC-Link-II/startup_LPC43xx.s | ;/***********************************************************************
; * $Id: startup_LPC43xx.s 6473 2011-02-16 17:40:54Z nxp27266 $
; *
; * Project: LPC43xx CMSIS Package
; *
; * Description: Cortex-M3 Core Device Startup File for the NXP LPC43xx
; * Device Series.
; *
; * Copyright(C) 2011, NXP Sem... |
x893/CMSIS-DAP | 10,720 | Firmware/STM32/startup_stm32f10x_md.s | ; Amount of memory (in bytes) allocated for Stack
; Tailor this value to your application needs
; <h> Stack Configuration
; <o> Stack Size (in Bytes) <0x0-0xFFFFFFFF:8>
; </h>
;;Stack_Size EQU 0x00000800
;;
;; AREA STACK, NOINIT, READWRITE, ALIGN=3
;;Stack_Mem SPACE Stack_Size
;;__... |
x893/CMSIS-DAP | 13,191 | Firmware/STM32/startup_stm32f10x_hd.s | ; Amount of memory (in bytes) allocated for Stack
; Tailor this value to your application needs
; <h> Stack Configuration
; <o> Stack Size (in Bytes) <0x0-0xFFFFFFFF:8>
; </h>
;;Stack_Size EQU 0x00000800
;;
;; AREA STACK, NOINIT, READWRITE, ALIGN=3
;;Stack_Mem SPACE Stack_Size
;;__... |
x893/Codec2WalkieTalkie | 19,433 | WalkieTalkie/startup_stm32f4xx.s | /**
******************************************************************************
* @file startup_stm32f4xx.s
* @author MCD Application Team
* @version V1.0.0
* @date 30-September-2011
* @brief STM32F4xx Devices vector table for Atollic TrueSTUDIO toolchain.
* This module pe... |
x893/Codec2WalkieTalkie | 29,254 | MDK/startup_stm32f40xx.s | ;******************** (C) COPYRIGHT 2016 STMicroelectronics ********************
;* File Name : startup_stm32f40xx.s
;* Author : MCD Application Team
;* @version : V1.8.0
;* @date : 09-November-2016
;* Description : STM32F40xxx/41xxx devices vector table for MDK-ARM to... |
x893/CNC-STM32 | 29,173 | src/libhardware/STM32F4-DISCO/startup_stm32f40_41xxx.s | ;******************** (C) COPYRIGHT 2013 STMicroelectronics ********************
;* File Name : startup_stm32f40_41xxx.s
;* Author : MCD Application Team
;* Version : V1.3.0
;* Date : 08-November-2013
;* Description : STM32F40xxx/41xxx devices vector table for MDK-AR... |
x893/CNC-STM32 | 29,173 | src/libcmsis/startup/arm/startup_stm32f40_41xxx.s | ;******************** (C) COPYRIGHT 2013 STMicroelectronics ********************
;* File Name : startup_stm32f40_41xxx.s
;* Author : MCD Application Team
;* Version : V1.3.0
;* Date : 08-November-2013
;* Description : STM32F40xxx/41xxx devices vector table for MDK-AR... |
x893/CNC-STM32 | 30,525 | src/libcmsis/startup/arm/startup_stm32f427_437xx.s | ;******************** (C) COPYRIGHT 2013 STMicroelectronics ********************
;* File Name : startup_stm32f427_437xx.s
;* Author : MCD Application Team
;* Version : V1.3.0
;* Date : 08-November-2013
;* Description : STM32F427xx/437xx devices vector table for MDK-A... |
x893/CNC-STM32 | 29,261 | src/libcmsis/startup/arm/startup_stm32f40xx.s | ;******************** (C) COPYRIGHT 2013 STMicroelectronics ********************
;* File Name : startup_stm32f40xx.s
;* Author : MCD Application Team
;* Version : V1.3.0
;* Date : 08-November-2013
;* Description : STM32F40xxx/41xxx devices vector table for MDK-ARM to... |
x893/CNC-STM32 | 30,676 | src/libcmsis/startup/arm/startup_stm32f429_439xx.s | ;******************** (C) COPYRIGHT 2013 STMicroelectronics ********************
;* File Name : startup_stm32f429_439xx.s
;* Author : MCD Application Team
;* Version : V1.3.0
;* Date : 08-November-2013
;* Description : STM32F429xx/439xx devices vector table for MDK-A... |
x893/CNC-STM32 | 12,458 | src/libcmsis/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-... |
x893/CNC-STM32 | 30,599 | src/libcmsis/startup/arm/startup_stm32f427x.s | ;******************** (C) COPYRIGHT 2013 STMicroelectronics ********************
;* File Name : startup_stm32f427x.s
;* Author : MCD Application Team
;* Version : V1.3.0
;* Date : 08-November-2013
;* Description : STM32F427xx/437xx devices vector table for MDK-ARM to... |
x893/CNC-STM32 | 29,013 | src/libcmsis/startup/arm/startup_stm32f2xx.s | ;******************** (C) COPYRIGHT 2012 STMicroelectronics ********************
;* File Name : startup_stm32f2xx.s
;* Author : MCD Application Team
;* Version : V1.1.3
;* Date : 05-March-2012
;* Description : STM32F2xx devices vector table for MDK-ARM toolchain.
;*... |
x893/CNC-STM32 | 15,145 | src/libcmsis/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... |
x893/CNC-STM32 | 25,435 | src/libcmsis/startup/arm/startup_stm32f401xx.s | ;******************** (C) COPYRIGHT 2013 STMicroelectronics ********************
;* File Name : startup_stm32f401xx.s
;* Author : MCD Application Team
;* Version : V1.3.0
;* Date : 08-November-2013
;* Description : STM32F401xx devices vector table for MDK-ARM toolcha... |
x893/CNC-STM32 | 9,491 | src/libcmsis/startup/gcc/startup_stm32f10x_ld.s | /**
******************************************************************************
* @file startup_stm32f10x_ld.s
* @author MCD Application Team
* @version V3.1.2
* @date 09/28/2009
* @brief STM32F10x Low Density Devices vector table for RIDE7 toolchain.
* This module perform... |
x893/CNC-STM32 | 23,596 | src/libcmsis/startup/gcc/startup_stm32f40_41xxx.s | /**
******************************************************************************
* @file startup_stm32f40_41xxx.s
* @author MCD Application Team
* @version V1.3.0
* @date 08-November-2013
* @brief STM32F40xxx/41xxx Devices vector table for RIDE7 toolchain.
* This ... |
x893/CNC-STM32 | 25,183 | src/libcmsis/startup/gcc/startup_stm32f427_437xx.s | /**
******************************************************************************
* @file startup_stm32f427_437xx.s
* @author MCD Application Team
* @version V1.3.0
* @date 08-November-2013
* @brief STM32F427xx/437xx Devices vector table for RIDE7 toolchain.
* This... |
x893/CNC-STM32 | 23,673 | src/libcmsis/startup/gcc/startup_stm32f40xx.s | /**
******************************************************************************
* @file startup_stm32f40xx.s
* @author MCD Application Team
* @version V1.3.0
* @date 08-November-2013
* @brief STM32F40xxx/41xxx Devices vector table for RIDE7 toolchain.
* Same as startup_stm... |
x893/CNC-STM32 | 25,183 | src/libcmsis/startup/gcc/startup_stm32f429_439xx.s | /**
******************************************************************************
* @file startup_stm32f429_439xx.s
* @author MCD Application Team
* @version V1.3.0
* @date 08-November-2013
* @brief STM32F429xx/439xx Devices vector table for RIDE7 toolchain.
* This... |
x893/CNC-STM32 | 9,985 | src/libcmsis/startup/gcc/startup_stm32f10x_md.s | /**
******************************************************************************
* @file startup_stm32f10x_md.s
* @author MCD Application Team
* @version V3.1.2
* @date 09/28/2009
* @brief STM32F10x Medium Density Devices vector table for RIDE7 toolchain.
* This module perf... |
x893/CNC-STM32 | 25,265 | src/libcmsis/startup/gcc/startup_stm32f427x.s | /**
******************************************************************************
* @file startup_stm32f427x.s
* @author MCD Application Team
* @version V1.3.0
* @date 08-November-2013
* @brief STM32F427xx/437xx Devices vector table for RIDE7 toolchain.
* Same as startup_stm... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.