CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - MASM6
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Search - MASM6 - List
[
Other resource
]
汇编课设
DL : 0
学分管理系统的分析,设计与实现.本程序在masm6.11下编译通过,用了少量386的汇编指令,运行时请输入密码hust.-credit management system analysis, design and implementation. The procedures under the masm6.11 compiler, with a small amount of the Series 386 instructions, running hust Please enter the password.
Update
: 2008-10-13
Size
: 1.06mb
Publisher
:
susu
[
assembly language
]
87983winapp
DL : 0
在MASM6.15上,用汇编语言实现简单的Windows应用程序.-Some simple Windows applications written by assembly language.MASM version above 6.15 is needed.
Update
: 2008-10-13
Size
: 10.42kb
Publisher
:
林辉
[
assembly language
]
asm_module
DL : 0
该程序模拟UNIX中save与resume函数,并介绍在VC中如何使用汇编进行机器级的操作. 主函数很简单首先引入两个外部函数,extern \"C\"表示按传统C命名习惯.函数save将程序指针保存在(*s)中并返回0,为什么有 if(save(&sp)){...} if后的语句看起来永远都不会被执行,但是运行结果表明它被执行了.这个问题同UNIX中处理机调度函数(switch)的那个if语句(第一句)一样. 程序执行完save(&sp)后得到因为条件为假而执行else语句,却在判断之前将程序指针保存在sp中了. else语句中的resume(&sp),该函数很狡猾将堆栈中的返回地址改变了,改到了sp所指出,即将程序指针改到了执行条件判断前.resume返回1,条件满足,执行if语句. save函数堆栈: eip ebp+8 s ebp+4 ebp ebp+0 resume函数堆栈与save的相同. 新建一个win32的工程,将unixc.cpp和unix.obj加入过程即可. unix.obj是用masm6.11生成的:ml /c /coff unix.asm,生成coff格式的obj而不是omf格式.-the simulation UNIX save and resume function, and the VC on how to use the compiled class machines for the operation. main function is very simple to introduce the first two external function, extern "C" said C. named by the traditional habits. function pointer procedures will save preserved in (* s) and return 0, why are there if (save (
Update
: 2008-10-13
Size
: 6.11kb
Publisher
:
摩尔
[
OS program
]
C-compiler-design
DL : 0
C-编译器的设计,有详细的文档 1. 具有比较友好的GUI界面(仿照了我自己正在用的emacs); 2. 语法支持比较全面(毕竟是C-,语法还是不多的); 3. Error Recovery; 4. 生成p-code,便于理解; 5. 生成asm代码,通过masm6.0基本都能编译成功,但代码没有优化,效率极低。-C-compiler design, is a detailed document. compared with a friendly GUI interface (modeled on my own is using the emacs); 2. Grammar supported the more comprehensive (after all, C-, grammar or less); 3. Error Recovery; 4. Generation p-code, easy to understand; 5. asm2 code generated by the basic masm6.0 able to successfully build, but code has not been optimized, extremely inefficient.
Update
: 2008-10-13
Size
: 972.67kb
Publisher
:
wangfei
[
assembly language
]
eleorgan
DL : 0
利用汇编程序MASM6.0制作的电子琴程序,带有人机界面,高低音转换,内置音乐播放等内容。是一个简单实用的程序。-use of the compilation process MASM6.0 flower production process, with man-machine interface, high-bass conversion, built-in music player, and so on. Is a simple and practical procedure.
Update
: 2008-10-13
Size
: 3.53kb
Publisher
:
李浩军
[
assembly language
]
masm6
DL : 1
汇编实验,用汇编语言实现一些简单操作,包括文件读写-compilation of experiments, using assembly language to achieve some simple operation, including document literacy
Update
: 2008-10-13
Size
: 259.56kb
Publisher
:
科比
[
assembly language
]
asm-mul
DL : 0
在16位CPU环境下实现大数乘法(8位十进制数乘8位十进制数),乘数与被乘数由键盘输入,计算结果向显示器输出。运行环境:MASM6.11,Windows XP
Update
: 2008-10-13
Size
: 104.28kb
Publisher
:
陈辉
[
assembly language
]
shubiaojiekou
DL : 0
鼠标接口 在屏幕上显示鼠标及其坐标。 通过设计,熟悉鼠标使用和中断的调用及程序的编制方法。 汇编时,最好使用MASM6.0以上版本。 若在WIN2000,XP下不能正常显示坐标时,可以先运行一些DOS界面的软件,如EDIT等。 然后退出在运行,就可正常运行本程序了。 在有些环境下,需先运行鼠标的驱动程序。
Update
: 2008-10-13
Size
: 2.56kb
Publisher
:
随风夜雨
[
Other resource
]
win32-asm-jiaochen-verygood
DL : 0
ASM 的教程。 这是使用 win32asm进行数据库编程,进行WINDOWS界面编程, Win32ASM的编译器最常用的有两种:Borland公司的Tasm5.0和Microsoft的Masm6.11以上版本,两种编译器各有自己的优缺点,Tasm带了一个不大不小的Import库,而Masm没有带,但Masm在代码的优化上面好象比Tasm做得好,但它却不带Import库。看来使用哪一种编译器还是比较难选择的,但Steve Hutchesson给了我们一个答案,他为Masm建立了一个很全的Import库,基本上包括了Windows绝大部分的Api函数,这些库、include文件和其他工具还有Masm6.14版本一起做成了一个 Masm32编译器 -- Masm32V5。这样一来,我们用汇编编程就象用C一样方便。 因为有了Masm32V5,所以就我个人而言,我推荐使用Masm作为Win32ASM的编译工具,但Masm和Tasm的宏语法有很多的不同,我的这个教程是以Masm格式写的。
Update
: 2008-10-13
Size
: 1.36mb
Publisher
:
myname
[
Other
]
MASM6.11
DL : 0
MASM6.11环境,需要的可以下载,绝对可用
Update
: 2008-10-13
Size
: 17.23mb
Publisher
:
天恩刚
[
Other resource
]
piano
DL : 0
弹钢琴游戏 用masm6.0编译生成exe文件就可以在dos下运行了 有可是界面 可以播放4只曲子
Update
: 2008-10-13
Size
: 5.82kb
Publisher
:
yenan
[
assembly language
]
a_song
DL : 0
a song under dos use masm6.0 to get exe to go music can change any time
Update
: 2008-10-13
Size
: 1.41kb
Publisher
:
yenan
[
assembly language
]
BCD
DL : 0
可以转换BCD码的asm文件 已通过masm6.0在dos下测试成功
Update
: 2008-10-13
Size
: 1.43kb
Publisher
:
yenan
[
assembly language
]
dazi1
DL : 1
汇编语言的另一个打字游戏 比较好 测试通过masm6.0
Update
: 2008-10-13
Size
: 5.28kb
Publisher
:
yenan
[
assembly language
]
masm6
DL : 0
汇编实验,用汇编语言实现一些简单操作,包括文件读写-compilation of experiments, using assembly language to achieve some simple operation, including document literacy
Update
: 2025-02-17
Size
: 259kb
Publisher
:
科比
[
Other
]
MASM6.11
DL : 0
MASM6.11环境,需要的可以下载,绝对可用-MASM6.11 environment, the needs can be downloaded, absolutely usable
Update
: 2025-02-17
Size
: 17.23mb
Publisher
:
天恩刚
[
ELanguage
]
MASM6.15
DL : 1
MASM6.15,汇编语言的编译器,一起分享。解压后双击setup.exe就可以安装-MASM6.15, assembly language compiler, to join them. After decompression can be installed double-click the setup.exe
Update
: 2025-02-17
Size
: 7.85mb
Publisher
:
wufan
[
Other
]
MASM6.11
DL : 0
MASM6.1的使用方法完整介绍,包括安装,调试等等。-MASM6.1 to use the full description, including installation, commissioning and so on.
Update
: 2025-02-17
Size
: 14kb
Publisher
:
linhanxiong
[
assembly language
]
MASM6.0
DL : 0
masm组建,汇编语言开发工具,功能齐全,很实用哦-masm component,it is very useful
Update
: 2025-02-17
Size
: 249kb
Publisher
:
武松
[
assembly language
]
MASM6.15
DL : 0
汇编MASM6.15,可用于win7系统-The assembly MASM6.15, for win7 system
Update
: 2025-02-17
Size
: 4.46mb
Publisher
:
陶金
«
1
2
3
»
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.