代码搜索:Mac 开发教程
找到约 10,000 项符合「Mac 开发教程」的源代码
代码结果 10,000
www.eeworm.com/read/120923/14782922
mac g++3.mac
CPP = g++
CPPFLAGS =
OFLAGS = -c
EXEFLAG = -o
OBJEXT = o
www.eeworm.com/read/220621/14794891
v mac_tp.v
'timescale 1ns/1ns
`include "mac.v"
module mac_tp;
reg[7:0] opa,opb;
reg clr,clk;
wire[15:0] out;
parameter DELY = 100;
MAC m1(out,opa,opb,clk,clr);
always #(DELY) clk = ~clk;
initial
www.eeworm.com/read/119982/14815846
c sho_mac.c
#define LINE 128
#define TITLE "Jamsa\'s C/C++ Programmer\'s Bible"
#define SECTION "Macros"
void main(void)
{
char book[LINE];
char library_name[LINE];
printf("This book's title is %s\n
www.eeworm.com/read/119409/14830932
tbl mac_uni.tbl
#The MIME name of this charset.
Mmacintosh
#Name as a Display Charset (used on Options screen)
OMacintosh (8 bit)
#
# Name: MacOS_Roman [to Unicode]
# Unicode versions: 1.1, 2.0
#
www.eeworm.com/read/119409/14830962
h mac_uni.h
www.eeworm.com/read/119269/14835527
h win-mac.h
/*
* Copyright 1989,1990,1995 by the Massachusetts Institute of Technology.
* All Rights Reserved.
*
* Export of this software from the United States of America may
* require a specific li
www.eeworm.com/read/119269/14835587
h obj_mac.h
/* crypto/objects/obj_mac.h */
/* THIS FILE IS GENERATED FROM objects.txt by objects.pl via the
* following command:
* perl objects.pl objects.txt obj_mac.num obj_mac.h
*/
/* Copyright (C) 1995-1
www.eeworm.com/read/118993/14845298
mac exebin2.mac
; -*- nasm -*-
; NASM macro file to allow the `bin' output format to generate
; simple .EXE files by constructing the EXE header by hand.
; Adapted from a contribution by Yann Guidon
www.eeworm.com/read/118993/14845318
mac c16.mac
; NASM macro set to make interfacing to 16-bit programs easier -*- nasm -*-
%imacro proc 1 ; begin a procedure definition
%push proc
global %1
%1: push bp
mov bp,sp
%if
www.eeworm.com/read/118993/14845324
mac c32.mac
; NASM macro set to make interfacing to 32-bit programs easier -*- nasm -*-
%imacro proc 1 ; begin a procedure definition
%push proc
global %1
%1: push ebp