repo_id
stringlengths
5
115
size
int64
590
5.01M
file_path
stringlengths
4
212
content
stringlengths
590
5.01M
soarbear/stm32f446-ihm07m1
1,912
f446-ihm07-a2208/Drivers/CMSIS/DSP/DSP_Lib_TestSuite/Common/platform/startup_generic.S
#if defined (__CC_ARM) #if (defined (ARM_MATH_CM0)) #include "ARMCC\startup_armv6-m.s" #elif (defined (ARM_MATH_CM0P)) #include "ARMCC\startup_armv6-m.s" #elif (defined (ARM_MATH_CM3)) #include "ARMCC\startup_armv7-m.s" #elif (defined (ARM_MATH_CM4)) #include "ARMCC\startup_armv7-m.s" #elif...
soarbear/stm32f446-ihm07m1
6,458
f446-ihm07-a2208/Drivers/CMSIS/DSP/DSP_Lib_TestSuite/Common/platform/ARMCLANG/startup_armv7-m.S
/* File: startup_armv7-m.S * Purpose: startup file for armv7-m architecture devices. * Should be used with ARMCLANG * Version: V2.00 * Date: 16 November 2015 * */ /* Copyright (c) 2011 - 2015 ARM LIMITED All rights reserved. Redistribution and use in source and binary forms, with or without mod...
soarbear/stm32f446-ihm07m1
5,756
f446-ihm07-a2208/Drivers/CMSIS/DSP/DSP_Lib_TestSuite/Common/platform/ARMCLANG/startup_armv6-m.S
/* File: startup_armv6-m.S * Purpose: startup file for armv6-m architecture devices. * Should be used with ARMCLANG * Version: V2.00 * Date: 16 November 2015 * */ /* Copyright (c) 2011 - 2015 ARM LIMITED All rights reserved. Redistribution and use in source and binary forms, with or without mod...
soarbear/stm32f446-ihm07m1
6,394
f446-ihm07-a2208/Drivers/CMSIS/DSP/DSP_Lib_TestSuite/Common/platform/ARMCC/startup_armv6-m.s
;/* File: startup_armv6-m.s ; * Purpose: startup file for armv7-m architecture devices. ; * Should be used with ARMCC ; * Version: V2.00 ; * Date: 16 November 2015 ; * ; */ ;/* Copyright (c) 2011 - 2014 ARM LIMITED ; ; All rights reserved. ; Redistribution and use in source and binary forms, with or withou...
soarbear/stm32f446-ihm07m1
7,083
f446-ihm07-a2208/Drivers/CMSIS/DSP/DSP_Lib_TestSuite/Common/platform/ARMCC/startup_armv7-m.s
;/* File: startup_armv7-m.s ; * Purpose: startup file for armv7-m architecture devices. ; * Should be used with ARMCC ; * Version: V2.00 ; * Date: 16 November 2015 ; * ; */ ;/* Copyright (c) 2011 - 2014 ARM LIMITED ; ; All rights reserved. ; Redistribution and use in source and binary forms, with or withou...
soarbear/stm32f446-ihm07m1
7,347
f446-ihm07-a2208/Drivers/CMSIS/DSP/DSP_Lib_TestSuite/Common/platform/GCC/startup_armv7-m.S
/* File: startup_armv7-m.S * Purpose: startup file for armv7-m architecture devices. * Should be used with GCC for ARM Embedded Processors * Version: V2.00 * Date: 16 November 2015 * */ /* Copyright (c) 2011 - 2015 ARM LIMITED All rights reserved. Redistribution and use in source and binary forms,...
soarbear/stm32f446-ihm07m1
7,290
f446-ihm07-a2208/Drivers/CMSIS/DSP/DSP_Lib_TestSuite/Common/platform/GCC/startup_armv6-m.S
/* File: startup_armv6-m.S * Purpose: startup file for armv6-m architecture devices. * Should be used with GCC for ARM Embedded Processors * Version: V2.00 * Date: 16 November 2015 * */ /* Copyright (c) 2011 - 2015 ARM LIMITED All rights reserved. Redistribution and use in source and binary forms,...
SolaceHarmony/ember-ml-kotlin
5,198
external/kcoro/lab/mirror/arch/aarch64/kc_ctx_switch.S
/* * ARM64/aarch64 context switching for kcoro * * This file implements the low-level register/stack switch primitive `kcoro`: * void* kcoro(kcoro_t* from_co, kcoro_t* to_co); * * Conceptually: * - Save the current coroutine's callee-saved registers and stack pointer * into from_co->reg[] * - Resto...
SolaceHarmony/ember-ml-kotlin
4,010
external/kcoro/lab/mirror/arch/x86_64/kc_ctx_switch.S
/* * x86_64 System V context switching for kcoro * * Implements the low-level primitive: * void* kcoro_switch(kcoro_t* from_co, kcoro_t* to_co); * * Contract (matches kcoro_core.c expectations): * kcoro_t has `void* reg[32]` as its first field. Indices used on x86_64: * reg[ 0..5] : r12, r13, r14, r15...
SolaceHarmony/ember-ml-kotlin
5,151
external/kcoro/arch/aarch64/kc_ctx_switch.S
/* * ARM64/aarch64 context switching for kcoro * * This file implements the low-level register/stack switch primitive `kcoro`: * void* kcoro(kcoro_t* from_co, kcoro_t* to_co); * * Conceptually: * - Save the current coroutine's callee-saved registers and stack pointer * into from_co->reg[] * - Resto...
SolaceHarmony/ember-ml-kotlin
4,010
external/kcoro/arch/x86_64/kc_ctx_switch.S
/* * x86_64 System V context switching for kcoro * * Implements the low-level primitive: * void* kcoro_switch(kcoro_t* from_co, kcoro_t* to_co); * * Contract (matches kcoro_core.c expectations): * kcoro_t has `void* reg[32]` as its first field. Indices used on x86_64: * reg[ 0..5] : r12, r13, r14, r15...
SquidTWL/SquidTWL
8,607
squidtwl/src/start.s
.section ".crt","ax" .global _start // TODO: Need to copy ITCM and DTCM // TODO: Replace the C1/C0 constants with ones not stolen from the decompiled game. setup_coprocessor: // The creatively named MCR and MRC stand for "Move Coprocessor to Register" and // "Move Register to Coprocessor", respectively. The n...
StarlightConsole/Starlight
3,096
src/arch/aarch64/exception.s
/// call the function provided by paramter `\handler` after saving the exeption context /// provide the context as the first parameter to `\handler` .macro CALL_WITH_CONTEXT handler __vector_\handler: // make room on the stack for the exception context sub sp, sp, #16 * 17 // store all general purpose registers on ...
StarlightConsole/Starlight
1,761
src/arch/aarch64/cpu/boot.s
// loads the address of a symbol into a register, relative .macro ADR_REL register, symbol adrp \register, \symbol add \register, \register, #:lo12:\symbol .endm .macro ADR_ABS register, symbol movz \register, #:abs_g3:\symbol movk \register, #:abs_g2_nc:\symbol movk \register, #:abs_g1_nc:\symbol movk \register...
StarlightConsole/Starship
1,360
src/arch/aarch64/cpu/boot.s
// loads the address of a symbol into a register, relative .macro ADR_REL register, symbol adrp \register, \symbol add \register, \register, #:lo12:\symbol .endm // loads the address of a symbol into a register, absolute .macro ADR_ABS register, symbol movz \register, #:abs_g2:\symbol movk \register, #:abs_g1_nc:\...
Starry-Mix-THU/arceos-backup
2,544
tools/raspi4/chainloader/src/_arch/aarch64/cpu/boot.s
// SPDX-License-Identifier: MIT OR Apache-2.0 // // Copyright (c) 2021-2022 Andre Richter <andre.o.richter@gmail.com> //-------------------------------------------------------------------------------------------------- // Definitions //-----------------------------------------------------------------------------------...
Starry-Mix-THU/arceos-backup
2,904
modules/axhal/linker.lds.S
OUTPUT_ARCH(%ARCH%) BASE_ADDRESS = %KERNEL_BASE%; ENTRY(_start) SECTIONS { . = BASE_ADDRESS; _skernel = .; .text : ALIGN(4K) { _stext = .; *(.text.boot) *(.text .text.*) . = ALIGN(4K); _etext = .; } _srodata = .; .rodata : ALIGN(4K) { *(.rodata...
Starry-Mix-THU/arceos-backup
1,791
modules/axhal/src/arch/loongarch64/trap.S
.macro SAVE_REGS, from_user move $t0, $sp .if \from_user == 1 csrrd $sp, KSAVE_KSP // restore kernel sp addi.d $sp, $sp, -{trapframe_size} STD $tp, $sp, 2 STD $r21, $sp, 21 csrrd $tp, KSAVE_TP csrrd $r21, KSAVE_R21 .else addi.d $sp, $sp, -{trap...
Starry-Mix-THU/arceos-backup
2,989
modules/axhal/src/arch/aarch64/trap.S
.macro SAVE_REGS sub sp, sp, {trapframe_size} stp x0, x1, [sp] stp x2, x3, [sp, 2 * 8] stp x4, x5, [sp, 4 * 8] stp x6, x7, [sp, 6 * 8] stp x8, x9, [sp, 8 * 8] stp x10, x11, [sp, 10 * 8] stp x12, x13, [sp, 12 * 8] stp x14, x15, [sp, 14 * 8] stp ...
Starry-Mix-THU/arceos-backup
2,285
modules/axhal/src/arch/riscv/trap.S
.macro SAVE_REGS, from_user addi sp, sp, -{trapframe_size} PUSH_GENERAL_REGS csrr t0, sepc csrr t1, sstatus csrrw t2, sscratch, zero // save sscratch (sp) and zero it STR t0, sp, 32 // tf.sepc STR t1, sp, 33 // tf.sstatus STR...
Starry-Mix-THU/arceos-backup
1,627
modules/axhal/src/arch/x86_64/trap.S
.equ NUM_INT, 256 .altmacro .macro DEF_HANDLER, i .Ltrap_handler_\i: .if \i == 8 || (\i >= 10 && \i <= 14) || \i == 17 # error code pushed by CPU push \i # interrupt vector jmp .Ltrap_common .else push 0 # fill in error code in TrapFrame push \i # interrupt ...
Starry-Mix-THU/arceos-backup
1,397
modules/axhal/src/arch/x86_64/syscall.S
.section .text .code64 syscall_entry: swapgs // switch to kernel gs mov gs:[offset __PERCPU_USER_RSP_OFFSET], rsp // save user rsp mov rsp, gs:[offset __PERCPU_TSS + {tss_rsp0_offset}] // switch to kernel stack sub rsp, 8 ...
Starry-Mix-THU/arceos-backup
1,965
modules/axhal/src/platform/x86_pc/ap_start.S
# Boot application processors into the protected mode. # Each non-boot CPU ("AP") is started up in response to a STARTUP # IPI from the boot CPU. Section B.4.2 of the Multi-Processor # Specification says that the AP will start in real mode with CS:IP # set to XY00:0000, where XY is an 8-bit value sent with the # STAR...
Starry-Mix-THU/arceos-backup
4,325
modules/axhal/src/platform/x86_pc/multiboot.S
# Bootstrapping from 32-bit with the Multiboot specification. # See https://www.gnu.org/software/grub/manual/multiboot/multiboot.html .section .text.boot .code32 .global _start _start: mov edi, eax # arg1: magic: 0x2BADB002 mov esi, ebx # arg2: multiboot info jmp bsp_entry32 .bal...
STashakkori/Rustyvisor_REPAIRED
8,669
uefi/src/isr.S
.intel_syntax noprefix .extern interrupts_dispatcher .global _service_interrupt _service_interrupt: /* Save all registers. */ push rax push rbx push rcx push rdx push rbp push rsi push rdi push r8 push r9 push r10 push r11 push r12 push r13 push r14 push r15 /* We don't need to clear the high bits of ...
STashakkori/Rustyvisor_REPAIRED
1,306
uefi/src/host_entrypoint.S
.intel_syntax noprefix .global _guest_first_entry _guest_first_entry: lea rcx, [rip+.guest_enters_here] mov rax, 0x0000681e // vmwrite Guest rip vmwrite rax, rcx jc .errorc jz .errorz mov rax, 0x00006820 // vmwrite Guest rflags pushfq pop rcx vmwrite rax, rcx jc .errorc jz...
STashakkori/Rustyvisor_REPAIRED
8,669
linux/src/isr.S
.intel_syntax noprefix .extern interrupts_dispatcher .global _service_interrupt _service_interrupt: /* Save all registers. */ push rax push rbx push rcx push rdx push rbp push rsi push rdi push r8 push r9 push r10 push r11 push r12 push r13 push r14 push r15 /* We don't need to clear the high bits of ...
STashakkori/Rustyvisor_REPAIRED
1,306
linux/src/host_entrypoint.S
.intel_syntax noprefix .global _guest_first_entry _guest_first_entry: lea rdi, [rip+.guest_enters_here] mov rax, 0x0000681e // vmwrite Guest rip vmwrite rax, rdi jc .errorc jz .errorz mov rax, 0x00006820 // vmwrite Guest rflags pushfq pop rdi vmwrite rax, rdi jc .errorc jz...
steve-anunknown/bytecode-assembler-generator
2,225
example/hello-world.s
JUMP 4b 0 PUSH1 0 PUSH1 a PUSH1 21 PUSH1 67 PUSH1 6e PUSH1 69 PUSH1 6b PUSH1 72 PUSH1 6f PUSH1 77 PUSH1 20 PUSH1 74 PUSH1 6f PUSH1 6e PUSH1 20 PUSH1 73 PUSH1 69 PUSH1 20 PUSH1 70 PUSH1 6d PUSH1 75 PUSH1 6a PUSH1 20 PUSH1 3a PUSH1 72 PUSH1 6f PUSH1 72 PUSH1 72 PUSH1 45 DUP 0 JNZ 46 0 DROP JUMP 4a 0 OUTPUT JUMP 3d 0 HALT...
stouset/8-bit-cpu
1,893
assembler/examples/primes.s
.equ prime_count, 0 .equ primes, 1 .org 0 ; ; void main(): halt ; main: data sp, #0 sto [#prime_count], sp ; prime_count=0 data ra, #2 data rc, #find_primes call rc hlt .org 32 ; ; void find_primes() ; ; clobbers: ra, rb, rc, rd ; find_primes: data rd, #3 ; rd = candidate = 3; tst rd _4: jc #...
stsp/libi86
3,225
tests/capture-ack.s
# /* * Copyright (c) 2018--2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the foll...
stsp/libi86
3,289
tests/capture-gcc.S
/* * Copyright (c) 2018--2020 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the follow...
stsp/libi86
1,882
host-ack/stdlib/libi86-get-psp.s
# /* * Copyright (c) 2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following ...
stsp/libi86
1,899
host-ack/stdlib/libi86-get-osmajor-osminor.s
# /* * Copyright (c) 2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following ...
stsp/libi86
1,903
host-ack/stdlib/libi86-ultoa-uldiv.s
# /* * Copyright (c) 2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following ...
stsp/libi86
1,341
host-ack/process/spawnlx.s
# /* Copyright (c) 2022 TK Chia * * The authors hereby grant permission to use, copy, modify, distribute, * and license this software and its documentation for any purpose, provided * that existing copyright notices are retained in all copies and that this * notice is included verbatim in any distributions. No wri...
stsp/libi86
1,687
host-ack/i86/nosound.s
# /* * Copyright (c) 2018--2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the foll...
stsp/libi86
2,600
host-ack/i86/libi86-intr-dispatch.s
# /* * Copyright (c) 2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following ...
stsp/libi86
1,725
host-ack/i86/libi86-CV-FP.s
# /* * Copyright (c) 2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following ...
stsp/libi86
1,720
host-ack/i86/segread.s
# /* * Copyright (c) 2018--2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the foll...
stsp/libi86
2,288
host-ack/i86/libi86-int86-do.s
# /* * Copyright (c) 2018--2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the foll...
stsp/libi86
2,477
host-ack/i86/libi86-int86x-do.s
# /* * Copyright (c) 2018--2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the foll...
stsp/libi86
1,632
host-ack/i86/enable.s
# /* * Copyright (c) 2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following ...
stsp/libi86
1,979
host-ack/i86/sound.s
# /* * Copyright (c) 2018--2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the foll...
stsp/libi86
1,655
host-ack/i86/libi86-get-cs.s
# /* * Copyright (c) 2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following ...
stsp/libi86
1,664
host-ack/i86/libi86-get-flags.s
# /* * Copyright (c) 2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following ...
stsp/libi86
1,634
host-ack/i86/disable.s
# /* * Copyright (c) 2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following ...
stsp/libi86
1,655
host-ack/i86/libi86-get-ss.s
# /* * Copyright (c) 2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following ...
stsp/libi86
2,119
host-ack/i86/libi86-intrf-do.s
# /* * Copyright (c) 2018--2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the foll...
stsp/libi86
1,717
host-ack/conio/outp.s
# /* * Copyright (c) 2018--2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the foll...
stsp/libi86
1,925
host-ack/conio/kbhit.s
# /* * Copyright (c) 2018--2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the foll...
stsp/libi86
1,760
host-ack/conio/inpw.s
# /* * Copyright (c) 2018--2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the foll...
stsp/libi86
1,775
host-ack/conio/outpw.s
# /* * Copyright (c) 2018--2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the foll...
stsp/libi86
2,486
host-ack/conio/libi86-con-out-fd.s
# /* * Copyright (c) 2018--2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the foll...
stsp/libi86
1,854
host-ack/conio/ungetch.s
# /* * Copyright (c) 2018--2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the foll...
stsp/libi86
1,715
host-ack/conio/inp.s
# /* * Copyright (c) 2018--2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the foll...
stsp/libi86
3,561
host-ack/conio/libi86-con-in-fd.s
# /* * Copyright (c) 2018--2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the foll...
stsp/libi86
1,949
host-ack/string/fmempcpy.s
# /* * Copyright (c) 2018--2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the foll...
stsp/libi86
1,896
host-ack/string/fmemset.s
# /* * Copyright (c) 2022 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following ...
stsp/libi86
1,773
host-ack/string/fstrlen.s
# /* * Copyright (c) 2018--2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the foll...
stsp/libi86
2,227
host-ack/string/fmemcmp.s
# /* * Copyright (c) 2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following ...
stsp/libi86
1,905
host-ack/string/fstrcpy.s
# /* * Copyright (c) 2018--2022 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the foll...
stsp/libi86
1,910
host-ack/string/fstpcpy.s
# /* * Copyright (c) 2018--2022 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the foll...
stsp/libi86
1,916
host-ack/string/fmemchr.s
# /* * Copyright (c) 2022 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following ...
stsp/libi86
1,987
host-ack/string/fmemcpy.s
# /* * Copyright (c) 2018--2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the foll...
stsp/libi86
2,041
host-ack/string/libi86-fmemmove-backward.s
# /* * Copyright (c) 2018--2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the foll...
stsp/libi86
1,875
host-ack/graph/libi86-vid-int-0x10.s
# /* * Copyright (c) 2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following ...
stsp/libi86
1,907
host-ack/graph/libi86-vid-set-vga-dac-reg.s
# /* * Copyright (c) 2022 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following ...
stsp/libi86
1,902
host-ack/graph/libi86-vid-get-ega-info.s
# /* * Copyright (c) 2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following ...
stsp/libi86
1,896
host-ack/graph/libi86-vid-get-ega-pal-reg.s
# /* * Copyright (c) 2022 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following ...
stsp/libi86
1,799
host-ack/graph/libi86-vid-set-ega-pal-reg.s
# /* * Copyright (c) 2022 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following ...
stsp/libi86
1,880
host-ack/graph/libi86-vid-get-vga-dac-reg.s
# /* * Copyright (c) 2022 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following ...
stsp/libi86
1,777
host-ack/graph/libi86-vid-get-curs-shape.s
# /* * Copyright (c) 2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following ...
stsp/libi86
1,754
host-ack/dos/dos-freemem.s
# /* * Copyright (c) 2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following ...
stsp/libi86
1,775
host-ack/dos/dos-commit.s
# /* * Copyright (c) 2018--2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the foll...
stsp/libi86
1,764
host-ack/dos/dos-getdate.s
# /* * Copyright (c) 2019--2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the foll...
stsp/libi86
1,863
host-ack/dos/dos-getvect.s
# /* * Copyright (c) 2021--2022 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the foll...
stsp/libi86
2,317
host-ack/dos/intdosx.s
# /* * Copyright (c) 2018--2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the foll...
stsp/libi86
1,942
host-ack/dos/dos-setdrive.s
# /* * Copyright (c) 2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following ...
stsp/libi86
1,838
host-ack/dos/parsfnm.s
# /* * Copyright (c) 2022 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following ...
stsp/libi86
1,739
host-ack/dos/dos-close.s
# /* * Copyright (c) 2019--2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the foll...
stsp/libi86
1,820
host-ack/dos/dos-creatnew.s
# /* * Copyright (c) 2019--2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the foll...
stsp/libi86
1,765
host-ack/dos/peek.s
# /* * Copyright (c) 2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following ...
stsp/libi86
1,833
host-ack/dos/libi86-msdos-do-open.s
# /* * Copyright (c) 2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following ...
stsp/libi86
1,921
host-ack/dos/dos-getdiskfree.s
# /* * Copyright (c) 2019--2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the foll...
stsp/libi86
1,780
host-ack/dos/poke.s
# /* * Copyright (c) 2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following ...
stsp/libi86
2,128
host-ack/dos/intdos.s
# /* * Copyright (c) 2018--2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the foll...
stsp/libi86
1,783
host-ack/dos/libi86-msdos-do-findfirst.s
# /* * Copyright (c) 2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following ...
stsp/libi86
1,814
host-ack/dos/libi86-msdos-do-truename.s
# /* * Copyright (c) 2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following ...
stsp/libi86
1,829
host-ack/dos/dos-setblock.s
# /* * Copyright (c) 2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following ...
stsp/libi86
1,807
host-ack/dos/dos-setdate.s
# /* * Copyright (c) 2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following ...
stsp/libi86
1,770
host-ack/dos/dos-gettime.s
# /* * Copyright (c) 2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following ...
stsp/libi86
1,867
host-ack/dos/makefcb.s
# /* * Copyright (c) 2022 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following ...
stsp/libi86
2,104
host-ack/dos/dos-spawn.s
# /* * Copyright (c) 2022 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following ...
stsp/libi86
1,868
host-ack/dos/bdos.s
# /* * Copyright (c) 2018--2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the foll...
stsp/libi86
1,863
host-ack/dos/dosexterr.s
# /* * Copyright (c) 2022 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following ...
stsp/libi86
1,835
host-ack/dos/dos-settime.s
# /* * Copyright (c) 2022 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following ...
stsp/libi86
1,738
host-ack/dos/libi86-msdos-do-findnext.s
# /* * Copyright (c) 2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following ...
stsp/libi86
1,770
host-ack/dos/dos-setftime.s
# /* * Copyright (c) 2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following ...
stsp/libi86
1,683
host-ack/dos/dos-findclose.s
# /* * Copyright (c) 2019--2021 TK Chia * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the foll...