代码搜索:Loader
找到约 9,497 项符合「Loader」的源代码
代码结果 9,497
www.eeworm.com/read/192310/8388109
bin loader.bin
www.eeworm.com/read/192310/8388116
asm loader.asm
org 0100h
mov ax, 0B800h
mov gs, ax
mov ah, 0Fh ; 0000: 黑底 1111: 白字
mov al, 'L'
mov [gs:((80 * 0 + 39) * 2)], ax ; 屏幕第 0 行, 第 39 列。
jmp $ ; Start
www.eeworm.com/read/191983/8413369
sce loader.sce
////////////////////////////////////////////////////////////////////////////////////////////
// OPC Toolbox
// Developed by Zhe.Peng & Longhua.Ma
// http://pengzhe1113.googlepages.com/
www.eeworm.com/read/291164/8438798
h loader.h
/*
* This file is part of John the Ripper password cracker,
* Copyright (c) 1996-98 by Solar Designer
*/
/*
* Password database management.
*/
#ifndef _JOHN_LOADER_H
#define _JOHN_LOADER_H
#in
www.eeworm.com/read/291164/8438939
c loader.c
/*
* This file is part of John the Ripper password cracker,
* Copyright (c) 1996-2000,2003,2005 by Solar Designer
*/
#include
#include
#include
#include
www.eeworm.com/read/190457/8443492
h loader.h
/*
* Copyright (C) 2003-2005 Pontus Fuchs, Giridhar Pemmasani
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as
www.eeworm.com/read/190457/8443524
c loader.c
/*
* Copyright (C) 2003-2005 Pontus Fuchs, Giridhar Pemmasani
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as
www.eeworm.com/read/289955/8515558
java loader.java
import java.io.*;
import javax.microedition.lcdui.*;
import javax.microedition.lcdui.game.*;
public class Loader extends GameCanvas
{
public static final int LOGO_H = 26;
public static f
www.eeworm.com/read/389075/8549247
h loader.h
#ifndef LOADER_H
#define LOADER_H
#ifdef __cplusplus
extern "C" {
#endif
#ifdef LEDBLINK
#include "led.h"
#endif
#ifdef UART
#include "uart.h"
#endif
#ifdef PRINTF
#include "myprintf.h
www.eeworm.com/read/389075/8549304
c loader.c
#include "loader.h"
void myloader(void)
{
void(*current_pc)(void) = 0;
#ifdef LEDBLINK
current_pc = ledblink;
#endif
#ifdef UART
current_pc = uart0demo;
#endif
#ifdef PRINTF
c