repo_id string | size int64 | file_path string | content string |
|---|---|---|---|
xenia-project/xenia | 1,049 | src/xenia/cpu/ppc/testing/instr_vmrghh.s | test_vmrghh_1:
#_ REGISTER_IN v3 [00010203, 04050607, 08090A0B, 0C0D0E0F]
#_ REGISTER_IN v4 [10111213, 14151617, 18191A1B, 1C1D1E1F]
vmrghh v5, v3, v4
blr
#_ REGISTER_OUT v3 [00010203, 04050607, 08090A0B, 0C0D0E0F]
#_ REGISTER_OUT v4 [10111213, 14151617, 18191A1B, 1C1D1E1F]
#_ REGISTER_OUT v5 [00011011, 0... |
xenia-project/xenia | 3,586 | src/xenia/cpu/ppc/testing/instr_cmp.s | test_cmpd_1:
#_ REGISTER_IN r3 0x0000000100000000
#_ REGISTER_IN r4 0x0000000200000000
cmpd r3, r4
mfcr r12
blr
#_ REGISTER_OUT r3 0x0000000100000000
#_ REGISTER_OUT r4 0x0000000200000000
#_ REGISTER_OUT r12 0x80000000
test_cmpd_1_constant:
li r3, 1
sldi r3, r3, 32
sldi r4, r3, 1
cmpd r3, r4
... |
xenia-project/xenia | 4,109 | src/xenia/cpu/ppc/testing/instr_cmpl.s | test_cmpld_1:
#_ REGISTER_IN r3 0x0000000100000000
#_ REGISTER_IN r4 0x0000000200000000
cmpld r3, r4
mfcr r12
blr
#_ REGISTER_OUT r3 0x0000000100000000
#_ REGISTER_OUT r4 0x0000000200000000
#_ REGISTER_OUT r12 0x80000000
test_cmpld_1_constant:
li r3, 1
sldi r3, r3, 32
sldi r4, r3, 1
cmpld r3, r... |
xenia-project/xenia | 3,500 | src/xenia/cpu/ppc/testing/instr_divdu.s | test_divdu_1:
#_ REGISTER_IN r4 1
#_ REGISTER_IN r5 2
divdu r3, r4, r5
blr
#_ REGISTER_OUT r3 0
#_ REGISTER_OUT r4 1
#_ REGISTER_OUT r5 2
test_divdu_1_constant:
li r4, 1
li r5, 2
divdu r3, r4, r5
blr
#_ REGISTER_OUT r3 0
#_ REGISTER_OUT r4 1
#_ REGISTER_OUT r5 2
# TODO(benvanik): x64 ignor... |
xenowing/xenowing | 1,185 | sw/xw/src/entry.s | .section .init, "ax"
.global _entry
_entry:
/* Clear bss section */
lui t0, %hi(_sbss)
addi t0, t0, %lo(_sbss)
lui t1, %hi(_ebss)
addi t1, t1, %lo(_ebss)
j _clear_bss_loop_end
_clear_bss_loop:
sw zero, 0(t0)
addi t0, t0, 4
_clear_bss_loop_end:
blt t0, t1, _clear_bss_l... |
xerpi/fakemote | 1,626 | source/start.s | /*
Custom IOS Module (USB)
Copyright (C) 2008 neimod.
Copyright (C) 2009 WiiGator.
Copyright (C) 2009 Waninkoko.
Copyright (C) 2009 davebaol.
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; ... |
xerpi/vita-linux-loader | 2,972 | linux_bootstrap.s | .set CPU123_WAIT_BASE, 0x1F007F00
.align 4
.text
.cpu cortex-a9
.macro get_cpu_id, rd
mrc p15, 0, \rd, c0, c0, 5
and \rd, #0xF
.endm
.globl _start
@ r0 = Linux entry paddr, r1 = DTB paddr
_start:
dsb
mov r9, r0
mov r10, r1
@ Clean jump target address (base + CPU_ID * 4)
ldr r0, =CPU123_WAIT_BASE
get_cp... |
xerpi/vita-linux-loader | 2,180 | resume.s | .set BOOTSTRAP_PADDR, 0x1F000000
.align 4
.text
.cpu cortex-a9
.global resume_function
.type resume_function, %function
resume_function:
dsb
@ Disable FIQs, IRQs, imprecise aborts and enter SVC mode
cpsid aif, #0x13
@ Set CONTEXTIDR (Context ID Register) to zero.
mov r3, #0
mcr p15, 0, r3, c13, c0, 1
i... |
xfangfang/wiliwili | 1,128 | scripts/switch-forwarder/source/trampoline.s | .section .text.nroEntrypointTrampoline, "ax", %progbits
.align 2
.global nroEntrypointTrampoline
.type nroEntrypointTrampoline, %function
.cfi_startproc
nroEntrypointTrampoline:
// Reset stack pointer.
adrp x8, __stack_top //Defined in libnx.
ldr x8, [x8, #:lo12:__stack_top]
mov sp, x8
// Call... |
xfcanyue/DuiLib_DuiEditor | 6,718 | DuiScript/angelscript/angelscript/source/as_callfunc_arm_xcode.S | /*
AngelCode Scripting Library
Copyright (c) 2003-2015 Andreas Jonsson
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any
damages arising from the use of this software.
Permission is granted to anyone to use this software for any... |
xfcanyue/DuiLib_DuiEditor | 26,629 | DuiScript/angelscript/angelscript/source/as_callfunc_arm_gcc.S | /*
AngelCode Scripting Library
Copyright (c) 2003-2020 Andreas Jonsson
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any
damages arising from the use of this software.
Permission is granted to anyone to use this software for any... |
xfcanyue/DuiLib_DuiEditor | 5,239 | DuiScript/angelscript/angelscript/source/as_callfunc_arm64_xcode.S | //
// AngelCode Scripting Library
// Copyright (c) 2020-2024 Andreas Jonsson
//
// This software is provided 'as-is', without any express or implied
// warranty. In no event will the authors be held liable for any
// damages arising from the use of this software.
//
// Permission is granted to anyone to use this ... |
xfcanyue/DuiLib_DuiEditor | 15,854 | DuiScript/angelscript/angelscript/source/as_callfunc_arm_vita.S | /*
AngelCode Scripting Library
Copyright (c) 2003-2015 Andreas Jonsson
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any
damages arising from the use of this software.
Permission is granted to anyone to use this software for any... |
xfcanyue/DuiLib_DuiEditor | 5,501 | DuiScript/angelscript/angelscript/source/as_callfunc_riscv64_gcc.S | //
// AngelCode Scripting Library
// Copyright (c) 2024 Andreas Jonsson
//
// This software is provided 'as-is', without any express or implied
// warranty. In no event will the authors be held liable for any
// damages arising from the use of this software.
//
// Permission is granted to anyone to use this softw... |
xfcanyue/DuiLib_DuiEditor | 5,497 | DuiScript/angelscript/angelscript/source/as_callfunc_arm64_gcc.S | //
// AngelCode Scripting Library
// Copyright (c) 2020-2024 Andreas Jonsson
//
// This software is provided 'as-is', without any express or implied
// warranty. In no event will the authors be held liable for any
// damages arising from the use of this software.
//
// Permission is granted to anyone to use this ... |
xhawk18/s_task | 3,440 | asm/jump_i386_sysv_elf_gas.S | /*
Copyright Oliver Kowalke 2009.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/****************************************************************************************
* ... |
xhawk18/s_task | 1,930 | asm/ontop_ppc64_sysv_xcoff_gas.S | .align 2
.globl .ontop_fcontext
.ontop_fcontext:
# reserve space on stack
subi 1, 1, 184
std 13, 0(1) # save R13
std 14, 8(1) # save R14
std 15, 16(1) # save R15
std 16, 24(1) # save R16
std 17, 32(1) # save R17
std 18, 40(1) # save R18
std 19, 48(1) # save R19
st... |
xhawk18/s_task | 3,592 | asm/make_i386_sysv_macho_gas.S | /*
Copyright Oliver Kowalke 2009.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/****************************************************************************************
* ... |
xhawk18/s_task | 5,103 | asm/jump_riscv64_sysv_elf_gas.S | /*
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/*******************************************************
* *
* ------------------------------... |
xhawk18/s_task | 7,783 | asm/ontop_ppc64_sysv_elf_gas.S | /*
Copyright Oliver Kowalke 2009.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/*******************************************************
* ... |
xhawk18/s_task | 2,783 | asm/make_arm_aapcs_macho_gas.S | /*
Copyright Oliver Kowalke 2009.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/*******************************************************
* ... |
xhawk18/s_task | 5,522 | asm/make_ppc32_sysv_xcoff_gas.S | /*
Copyright Oliver Kowalke 2009.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/******************************************************
* ... |
xhawk18/s_task | 3,494 | asm/jump_x86_64_sysv_elf_gas.S | /*
Copyright Oliver Kowalke 2009.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/****************************************************************************************
* ... |
xhawk18/s_task | 3,716 | asm/make_arm64_aapcs_elf_gas.S | /*
Copyright Edward Nevill + Oliver Kowalke 2015
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/*******************************************************
* ... |
xhawk18/s_task | 3,189 | asm/jump_arm_aapcs_macho_gas.S | /*
Copyright Oliver Kowalke 2009.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/*******************************************************
* ... |
xhawk18/s_task | 5,249 | asm/jump_s390x_sysv_elf_gas.S | /*******************************************************
* ------------------------------------------------- *
* | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | *
* ------------------------------------------------- *
* | 0 | 8 | 16 | 24 | *
* -------------------------------... |
xhawk18/s_task | 3,808 | asm/make_arm64_aapcs_macho_gas.S | /*
Copyright Edward Nevill + Oliver Kowalke 2015
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/*******************************************************
* ... |
xhawk18/s_task | 2,161 | asm/jump_ppc64_sysv_xcoff_gas.S |
/*
Copyright Oliver Kowalke 2009.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
.align 2
.globl .jump_fcontext
.jump_fcontext:
# reserve space on stack
subi 1, 1, 184
st... |
xhawk18/s_task | 4,051 | asm/make_riscv64_sysv_elf_gas.S | /*
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/*******************************************************
* *
* ------------------------------... |
xhawk18/s_task | 7,635 | asm/ontop_ppc32_sysv_xcoff_gas.S | /*
Copyright Oliver Kowalke 2009.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/******************************************************
* ... |
xhawk18/s_task | 4,095 | asm/ontop_arm64_aapcs_macho_gas.S | /*
Copyright Edward Nevill + Oliver Kowalke 2015
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/*******************************************************
* ... |
xhawk18/s_task | 3,544 | asm/ontop_x86_64_sysv_elf_gas.S | /*
Copyright Oliver Kowalke 2009.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/****************************************************************************************
* ... |
xhawk18/s_task | 3,714 | asm/make_mips64_n64_elf_gas.S | /*
Copyright Jiaxun Yang 2018.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/*******************************************************
* ... |
xhawk18/s_task | 5,000 | asm/ontop_s390x_sysv_elf_gas.S | /*******************************************************
* ------------------------------------------------- *
* | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | *
* ------------------------------------------------- *
* | 0 | 8 | 16 | 24 | *
* -------------------------------... |
xhawk18/s_task | 6,297 | asm/jump_ppc32_sysv_elf_gas.S | /*
Copyright Oliver Kowalke 2009.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/*******************************************************
* ... |
xhawk18/s_task | 1,080 | asm/make_riscv32_elf_gas.S | /*
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
.file "make_riscv64_elf_gas.S"
.text
.align 1
.global make_fcontext
.type make_fcontext, %function
make_fcontext:
# shift address in a0 (all... |
xhawk18/s_task | 4,055 | asm/make_i386_sysv_elf_gas.S | /*
Copyright Oliver Kowalke 2009.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/****************************************************************************************
* ... |
xhawk18/s_task | 4,090 | asm/jump_arm64_aapcs_macho_gas.S | /*
Copyright Edward Nevill + Oliver Kowalke 2015
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/*******************************************************
* ... |
xhawk18/s_task | 3,352 | asm/ontop_x86_64_sysv_macho_gas.S | /*
Copyright Oliver Kowalke 2009.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/****************************************************************************************
* ... |
xhawk18/s_task | 3,661 | asm/make_mips32_o32_elf_gas.S | /*
Copyright Oliver Kowalke 2009.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/*******************************************************
* ... |
xhawk18/s_task | 1,215 | asm/make_gas.S | // Stub file for universal binary
#if defined(__APPLE__)
#include "make_combined_macho_gas.S"
#elif defined(_WIN32) || defined(__MINGW32__) || defined(__MINGW64__) || defined(__CYGWIN__) || defined(__MSYS__)
#if defined(__x86_64__)
#include "make_x86_64_ms_pe_gas.asm"
#elif defined(__i386__)
... |
xhawk18/s_task | 4,249 | asm/ontop_mips32_o32_elf_gas.S | /*
Copyright Oliver Kowalke 2009.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/*******************************************************
* ... |
xhawk18/s_task | 5,461 | asm/make_ppc32_sysv_macho_gas.S | /*
Copyright Oliver Kowalke 2009.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/******************************************************
* ... |
xhawk18/s_task | 3,181 | asm/jump_i386_sysv_macho_gas.S | /*
Copyright Oliver Kowalke 2009.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/****************************************************************************************
* ... |
xhawk18/s_task | 3,231 | asm/make_x86_64_sysv_macho_gas.S | /*
Copyright Oliver Kowalke 2009.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/****************************************************************************************
* ... |
xhawk18/s_task | 3,078 | asm/jump_arm_aapcs_elf_gas.S | /*
Copyright Oliver Kowalke 2009.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/*******************************************************
* ... |
xhawk18/s_task | 5,227 | asm/make_ppc32_sysv_elf_gas.S | /*
Copyright Oliver Kowalke 2009.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/*******************************************************
* ... |
xhawk18/s_task | 7,641 | asm/jump_ppc32_sysv_xcoff_gas.S | /*
Copyright Oliver Kowalke 2009.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/******************************************************
* ... |
xhawk18/s_task | 5,116 | asm/ontop_riscv64_sysv_elf_gas.S | /*
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/*******************************************************
* *
* ------------------------------... |
xhawk18/s_task | 7,302 | asm/jump_ppc64_sysv_elf_gas.S | /*
Copyright Oliver Kowalke 2009.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/*******************************************************
* ... |
xhawk18/s_task | 6,155 | asm/make_ppc64_sysv_elf_gas.S | /*
Copyright Oliver Kowalke 2009.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/*******************************************************
* ... |
xhawk18/s_task | 4,459 | asm/jump_mips64_n64_elf_gas.S | /*
Copyright Jiaxun Yang 2018.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/*******************************************************
* ... |
xhawk18/s_task | 3,595 | asm/ontop_i386_sysv_elf_gas.S | /*
Copyright Oliver Kowalke 2009.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/****************************************************************************************
* ... |
xhawk18/s_task | 3,330 | asm/ontop_i386_sysv_macho_gas.S | /*
Copyright Oliver Kowalke 2009.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/****************************************************************************************
* ... |
xhawk18/s_task | 4,376 | asm/ontop_mips64_n64_elf_gas.S | /*
Copyright Jiaxun Yang 2018.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE
*/
/*******************************************************
* *
*... |
xhawk18/s_task | 4,275 | asm/jump_arm64_aapcs_elf_gas.S | /*
Copyright Edward Nevill + Oliver Kowalke 2015
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/*******************************************************
* ... |
xhawk18/s_task | 5,619 | asm/ontop_ppc64_sysv_macho_gas.S | /*
Copyright Oliver Kowalke 2009.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/*******************************************************
* ... |
xhawk18/s_task | 3,177 | asm/ontop_arm_aapcs_elf_gas.S | /*
Copyright Oliver Kowalke 2009.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/*******************************************************
* ... |
xhawk18/s_task | 4,087 | asm/make_s390x_sysv_elf_gas.S | /*******************************************************
* ------------------------------------------------- *
* | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | *
* ------------------------------------------------- *
* | 0 | 8 | 16 | 24 | *
* -------------------------------... |
xhawk18/s_task | 4,284 | asm/ontop_arm64_aapcs_elf_gas.S | /*
Copyright Edward Nevill + Oliver Kowalke 2015
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/*******************************************************
* ... |
xhawk18/s_task | 4,211 | asm/jump_mips32_o32_elf_gas.S | /*
Copyright Oliver Kowalke 2009.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/*******************************************************
* ... |
xhawk18/s_task | 2,230 | asm/jump_riscv32_elf_gas.S | /*
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
.file "jump_riscv64_elf_gas.S"
.text
.align 1
.global jump_fcontext
.type jump_fcontext, %function
jump_fcontext:
#ifdef __riscv_flen
# pre... |
xhawk18/s_task | 1,793 | asm/s_port_stm8.s | #include <vregs.inc>
module s_port_stm8s
save_registers macro
push CC
pushw Y
pushw X
push A
endm
restore_registers macro
pop A
popw X
popw Y
pop CC
endm
save_virtual_registers macro
push ?b0
push ?b1
push ?b2
push... |
xhawk18/s_task | 3,306 | asm/jump_x86_64_sysv_macho_gas.S | /*
Copyright Oliver Kowalke 2009.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/****************************************************************************************
* ... |
xhawk18/s_task | 4,959 | asm/make_ppc64_sysv_macho_gas.S | /*
Copyright Oliver Kowalke 2009.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/*******************************************************
* ... |
xhawk18/s_task | 3,283 | asm/ontop_arm_aapcs_macho_gas.S | /*
Copyright Oliver Kowalke 2009.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/*******************************************************
* ... |
xhawk18/s_task | 3,040 | asm/make_arm_aapcs_elf_gas.S | /*
Copyright Oliver Kowalke 2009.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/*******************************************************
* ... |
xhawk18/s_task | 1,651 | asm/make_ppc64_sysv_xcoff_gas.S | /*
Copyright Oliver Kowalke 2009.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
.globl make_fcontext[DS]
.globl .make_fcontext[PR]
.align 2
.csect .make_fcontext[PR], 3
.globl _ma... |
xhawk18/s_task | 7,558 | asm/jump_ppc32_sysv_macho_gas.S | /*
Copyright Oliver Kowalke 2009.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/******************************************************
* ... |
xhawk18/s_task | 6,312 | asm/ontop_ppc32_sysv_elf_gas.S | /*
Copyright Oliver Kowalke 2009.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/*******************************************************
* ... |
xhawk18/s_task | 1,215 | asm/jump_gas.S | // Stub file for universal binary
#if defined(__APPLE__)
#include "jump_combined_macho_gas.S"
#elif defined(_WIN32) || defined(__MINGW32__) || defined(__MINGW64__) || defined(__CYGWIN__) || defined(__MSYS__)
#if defined(__x86_64__)
#include "jump_x86_64_ms_pe_gas.asm"
#elif defined(__i386__)
... |
xhawk18/s_task | 5,865 | asm/jump_ppc64_sysv_macho_gas.S | /*
Copyright Oliver Kowalke 2009.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/*******************************************************
* ... |
xhawk18/s_task | 3,421 | asm/make_x86_64_sysv_elf_gas.S | /*
Copyright Oliver Kowalke 2009.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/****************************************************************************************
* ... |
xhawk18/s_task | 7,548 | asm/ontop_ppc32_sysv_macho_gas.S | /*
Copyright Oliver Kowalke 2009.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
*/
/******************************************************
* ... |
xhawk18/s_task | 9,471 | projects/stm32f103/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... |
xhawk18/s_task | 12,040 | projects/stm32f103/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.
... |
xhawk18/s_task | 10,659 | projects/stm32f103/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.... |
xhawk18/s_task | 12,796 | projects/stm32f103/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... |
xhawk18/s_task | 9,911 | projects/stm32f103/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... |
xhawk18/s_task | 12,695 | projects/stm32f103/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... |
xhawk18/s_task | 12,604 | projects/stm32f103/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... |
xhawk18/s_task | 10,179 | projects/stm32f103/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.
... |
xhawk18/s_task | 12,079 | projects/stm32f103/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... |
xhawk18/s_task | 15,346 | projects/stm32f103/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... |
xhawk18/s_task | 13,758 | projects/stm32f103/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 ... |
xhawk18/s_task | 15,597 | projects/stm32f103/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 ... |
xhawk18/s_task | 12,458 | projects/stm32f103/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-... |
xhawk18/s_task | 15,145 | projects/stm32f103/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... |
xhawk18/s_task | 15,398 | projects/stm32f103/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... |
xhawk18/s_task | 13,352 | projects/stm32f103/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... |
xhawk18/s_task | 9,479 | projects/stm32f103/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... |
xhawk18/s_task | 11,788 | projects/stm32f103/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... |
xhawk18/s_task | 10,349 | projects/stm32f103/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... |
xhawk18/s_task | 12,785 | projects/stm32f103/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... |
xhawk18/s_task | 9,912 | projects/stm32f103/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... |
xhawk18/s_task | 12,123 | projects/stm32f103/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... |
xhawk18/s_task | 12,131 | projects/stm32f103/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.
* ... |
xhawk18/s_task | 9,883 | projects/stm32f103/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.
* ... |
xhawk18/s_task | 12,284 | projects/stm32f103/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
;... |
xhawk18/s_task | 15,214 | projects/stm32f103/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... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.