Location:
Search - ide asm
Search list
Description: IDE设备直接读取程序 ASM(汇编语言编写),在DOS下可直接使用。-IDE devices directly reader ASM (written in assembly language), the DOS can be used directly.
Platform: |
Size: 2831 |
Author: 李志海 |
Hits:
Description: V2Packer
code by tt.t with almost pure delphi
first build @ 2006.4.15
看到過許多別人寫的殼,大多是asm,也有的是c。早就想試一試用比較“純”的delphi
寫會是什麼樣子,於是就有了V2Packer。
V2Packer斷斷續續寫了半個月的時間,資源部分代碼寫的很垃圾,只算是能用。PEAnalyst類
由於改變了思路,去掉了一些東西,現在成了PEHeader類的再包裝。
代碼中的{$INCLUDE DePack.pas }是因為d6的ide不支持代碼摺疊,就把一些代碼移到了
單獨的單元。
DePack.pas中用了一個非常簡單而且不安全的anti-debug trick,很可能有危險,不過
姑且放在那裡吧。
代碼中肯定有bug,不過測試中沒發現大問題,作為自娛自樂的產物就算說得過去了。
程序寫的思路比較清晰,如果對感興趣,可以從DoPack函數看起。
希望能對為數不多的用delphi寫這累東西的初學者有一些幫助。
!請不要將這些代碼用於非法用途!-V2Packer code by tt.t with almost pure delp hi first build@2006.4.15 seen many people write the carcasses, mostly asm2. c while others. Had long ago wanted to try a more "pure" delphi write what is, so there will be a V2Packer. V2Packer write off half of the time and resources of the code is written rubbish is only can be used. PEAnalyst category owing to a change in the thinking and get rid of some stuff PEHeader now become a kind of repackaging. The code () $ INCLUDE DePack.pas because d6, B3 does not support the ide code folding , put some code moved to a separate unit. DePack.pas using a very simple and insecure anti-debug trick , it is very likely it is dangerous, but to give it on there. I am sure that code bug, but tests found no major problems, as the product even enterta
Platform: |
Size: 526283 |
Author: 大可 |
Hits:
Description: 一个有关asm汇编32的IDE开发
小程序的源码
-asm2 a compilation of the 32 small IDE development process FOSS
Platform: |
Size: 53826 |
Author: wind |
Hits:
Description: 在USB/UART转换芯片支持下,通过USB接口使用UART与上位机通讯,
// 当收到上位机发送的数据时,把接收到的数据发送到上位机,显示
// 在上位机串口调试软件上
// IDE环境: SUNPLUS u nSPTM IDE 2.0.0(or later)
// PC机环境: 串口调试工具(PortExpert)
// 涉及的库: CMacro1016.lib
// 组成文件: main.asm
// 硬件连接: USB线连接实验仪与PC的USB接口-in USB / UART conversion chip support, USB interface through the use of UART and PC communications, / / When PC data transmission, regard the reception of the data sent to the PC, show / / the PC serial debugging software / / IDE environment : SUNPLUS u nSPTM IDE 2.0.0 (or later) / / PC environment : Serial debugging tools (PortExpert) / / the library : CMacro1016.lib / / constituent documents : main.asm / hardware / connection : USB link experimental instrument and the PC's USB port
Platform: |
Size: 257037 |
Author: leon |
Hits:
Description: ATA/ATAPI IDE设备列举程序 早年自己学ASM第一周所写的程序.现放出来分享.
Platform: |
Size: 1832 |
Author: 南狼 |
Hits:
Description: 该程序用来测试89C51与IDE硬盘的接口
Platform: |
Size: 979911 |
Author: caoyang |
Hits:
Description: 详细讲述了linux设备驱动程序的开发,想学习linux下设备驱动程序开发工作的人员可以参考。文件清单列出如下:
linuxdriver_code_tool
|-- 03
| `-- 2.6内核升级工具
| |-- device-mapper-1.00.19-2.i386.rpm
| |-- lvm2-2.00.25-1.01.i386.rpm
| |-- mkinitrd-4.2.0.3.tar.tar
| |-- module-init-tools-3.2.2.tar.bz2
| `-- modutils-2.4.5-1.src.rpm
|-- 04
| |-- 内核模块参数范例
| | `-- book.c
| |-- 内核模块导出符号
| | `-- export_symb.c
| `-- 最简单的内核模块
| `-- hello.c
|-- 05
| `-- udev源代码
| `-- udev-114.tar.gz
|-- 06
| |-- globalmem驱动
| | `-- globalmem.c
| `-- 包含2个globalmem设备的驱动
| `-- globalmem_two.c
|-- 07
| `-- 含并发控制的globalmem驱动
| `-- globalmem_lock.c
|-- 08
| |-- globalfifo驱动
| | `-- globalfifo.c
| `-- poll应用程序范例
| `-- pollmonitor.c
|-- 09
| |-- 异步通知应用程序范例
| | `-- asyncmonitor.c
| `-- 支持异步通知的globalfifo
| `-- globalfifo_async.c
|-- 10
| |-- S3C2410实时钟驱动
| | `-- s3c2410-rtc.c
| `-- 秒设备驱动与应用程序
| |-- second.c
| `-- second_test.c
|-- 11
| |-- DMA范例
| | |-- 3c505.c
| | |-- 3c505.h
| | `-- dma.h
| `-- 静态映射范例
| `-- mach-smdk2440.c
|-- 12
| |-- NVRAM驱动
| | `-- generic_nvram.c
| |-- 触摸屏驱动
| | |-- 作为input设备
| | | |-- s3c2410_ts.c
| | | `-- s3c2410_ts.h
| | `-- 作为普通字符设备
| | `-- s3c2410-ts.c
| |-- 看门狗驱动
| | `-- s3c2410_wdt.c
| `-- 平台设备
| `-- devs.c
|-- 13
| |-- IDE驱动
| | |-- ide-disk.c
| | `-- ide-h8300.c
| `-- RAMDISK驱动
| `-- rd.c
|-- 14
| |-- S3C2410串口驱动
| | |-- regs-gpio.h
| | |-- regs-serial.h
| | `-- s3c2410.c
| `-- 串口核心层
| |-- serial_core.c
| `-- serial_core.h
|-- 15
| |-- S3C2410 I2C主机驱动
| | |-- i2c-s3c2410.c
| | |-- iic.h
| | |-- regs-gpio.h
| | `-- regs-iic.h
| `-- SAA711x I2C设备驱动
| `-- saa711x.c
|-- 16
| `-- CS8900以太网设备驱动
| |-- cs89x0.c
| `-- cs89x0.h
|-- 17
| |-- ALSA工具及库
| | |-- alsa-driver-1.0.15.tar.bz2
| | |-- alsa-firmware-1.0.15.tar.bz2
| | |-- alsa-lib-1.0.15.tar.bz2
| | |-- alsa-oss-1.0.15.tar.bz2
| | |-- alsa-tools-1.0.15.tar.bz2
| | |-- alsa-utils-1.0.13.tar.bz2
| | `-- pyalsa-1.0.15.tar.bz2
| |-- ALSA驱动范例
| | |-- sa11xx-uda1341.c
| | `-- uda1341.h
| |-- ALSA应用程序范例
| | |-- pcm.c
| | `-- pcm_min.c
| |-- OSS驱动范例
| | `-- s3c2410-uda1341.c
| `-- OSS应用程序范例
| |-- mixer.c
| `-- sound.c
|-- 18
| |-- FRAMEBUFFER应用程序范例
| | `-- fb_display
| | |-- fb_display.c
| | |-- fb_display.h
| | |-- Makefile
| | |-- README
| | `-- test.c
| `-- S3C2410 LCD驱动
| |-- s3c2410fb.c
| `-- s3c2410fb.h
|-- 19
| |-- busybox源代码
| | `-- busybox-1.2.1.tar.bz2
| |-- MTD工具
| | `-- mtd-utils-1.0.0.tar.gz
| |-- nand驱动范例
| | `-- s3c2410.c
| |-- nor驱动范例
| | `-- s3c2410nor.c
| `-- yaffs&yaffs2源代码
| |-- yaffs.tar.gz
| `-- yaffs2.tar.gz
|-- 20
| |-- USB串口驱动
| | |-- usb-serial.c
| | `-- usb-serial.h
| |-- USB工具
| | `-- usbview-1.0.tar.tar
| |-- USB骨架程序
| | `-- usb-skeleton.c
| |-- USB键盘驱动
| | |-- input.h
| | |-- usb_input.h
| | `-- usbkbd.c
| `-- usb主机控制器驱动范例
| |-- ohci-s3c2410.c
| `-- usb-control.h
|-- 21
| |-- PCI骨架程序
| | `-- pci-skeleton.c
| `-- PCI驱动范例
| `-- i810_audio.c
`-- 22
|-- 范例代码
| |-- oops范例
| | |-- oops_example.asm
| | `-- oops_example.c
| `-- proc范例
| `-- sim_proc.c
`-- 内核调试工具
|-- ddd-3.3.11.tar.gz
|-- gdbmod-2.4.bz2
|-- kdb-v4.4-2.6.15-rc5-common-1.bz2
|-- kdb-v4.4-2.6.15-rc5-common-2.bz2
|-- kdb-v4.4-2.6.15-rc5-i386-1.bz2
`-- linux-2.6.15.5-kgdb-2.4.tar.tar
Platform: |
Size: 25078324 |
Author: zxx000 |
Hits:
Description: IDE设备直接读取程序 ASM(汇编语言编写),在DOS下可直接使用。-IDE devices directly reader ASM (written in assembly language), the DOS can be used directly.
Platform: |
Size: 3072 |
Author: 李志海 |
Hits:
Description: 谁说vb中不能用汇编?
这是一个读取cpuid(调用cpuid汇编指令)的一个例子。
原来有人做过, 但都有bug, 是因为对vb的反汇编不熟的缘故, 导致stack错误。经常在ide中正常, 编译成exe变非法错误。
这个例子告诉你怎么真正的在vb中用汇编!-Who is not used in the compilation? This is a reader CPUID (compilation called CPUID instruction) an example. The original was done, but all of bug, is due to the anti-compilation vb wake reasons, led to the wrong stack. Ide often normal, compiled exe changed illegal wrong. This example to tell you how truly vb used in the compilation!
Platform: |
Size: 8192 |
Author: 胡俊杰 |
Hits:
Description: V2Packer
code by tt.t with almost pure delphi
first build @ 2006.4.15
看到過許多別人寫的殼,大多是asm,也有的是c。早就想試一試用比較“純”的delphi
寫會是什麼樣子,於是就有了V2Packer。
V2Packer斷斷續續寫了半個月的時間,資源部分代碼寫的很垃圾,只算是能用。PEAnalyst類
由於改變了思路,去掉了一些東西,現在成了PEHeader類的再包裝。
代碼中的{$INCLUDE DePack.pas }是因為d6的ide不支持代碼摺疊,就把一些代碼移到了
單獨的單元。
DePack.pas中用了一個非常簡單而且不安全的anti-debug trick,很可能有危險,不過
姑且放在那裡吧。
代碼中肯定有bug,不過測試中沒發現大問題,作為自娛自樂的產物就算說得過去了。
程序寫的思路比較清晰,如果對感興趣,可以從DoPack函數看起。
希望能對為數不多的用delphi寫這累東西的初學者有一些幫助。
!請不要將這些代碼用於非法用途!-V2Packer code by tt.t with almost pure delp hi first build@2006.4.15 seen many people write the carcasses, mostly asm2. c while others. Had long ago wanted to try a more "pure" delphi write what is, so there will be a V2Packer. V2Packer write off half of the time and resources of the code is written rubbish is only can be used. PEAnalyst category owing to a change in the thinking and get rid of some stuff PEHeader now become a kind of repackaging. The code () $ INCLUDE DePack.pas because d6, B3 does not support the ide code folding , put some code moved to a separate unit. DePack.pas using a very simple and insecure anti-debug trick , it is very likely it is dangerous, but to give it on there. I am sure that code bug, but tests found no major problems, as the product even enterta
Platform: |
Size: 526336 |
Author: |
Hits:
Description: 一个有关asm汇编32的IDE开发
小程序的源码
-asm2 a compilation of the 32 small IDE development process FOSS
Platform: |
Size: 53248 |
Author: wind |
Hits:
Description: 在USB/UART转换芯片支持下,通过USB接口使用UART与上位机通讯,
// 当收到上位机发送的数据时,把接收到的数据发送到上位机,显示
// 在上位机串口调试软件上
// IDE环境: SUNPLUS u nSPTM IDE 2.0.0(or later)
// PC机环境: 串口调试工具(PortExpert)
// 涉及的库: CMacro1016.lib
// 组成文件: main.asm
// 硬件连接: USB线连接实验仪与PC的USB接口-in USB/UART conversion chip support, USB interface through the use of UART and PC communications,// When PC data transmission, regard the reception of the data sent to the PC, show// the PC serial debugging software// IDE environment : SUNPLUS u nSPTM IDE 2.0.0 (or later)// PC environment : Serial debugging tools (PortExpert)// the library : CMacro1016.lib// constituent documents : main.asm/hardware/connection : USB link experimental instrument and the PC's USB port
Platform: |
Size: 257024 |
Author: leon |
Hits:
Description: ATA/ATAPI IDE设备列举程序 早年自己学ASM第一周所写的程序.现放出来分享.-ATA/ATAPI IDE devices listed in their own learning process early years written by the first week of ASM process. Share is released.
Platform: |
Size: 1024 |
Author: 南狼 |
Hits:
Description: 该程序用来测试89C51与IDE硬盘的接口-The procedure used to test 89C51 and IDE hard disk interface
Platform: |
Size: 979968 |
Author: caoyang |
Hits:
Description: 功能描述:显示时分秒
IDE环境:伟福V3.20 自制的下载线与实验板(or later)
硬件连接:针对配合AT89S51精简开发板使用
组成文件:实验八 时钟程序(延时实现).ASM-Function description: every minute is displayed
IDE environment: Fu Wei V3.20 download home-made board with the experimental line (or later)
Hardware connection: AT89S51 for streamlining development board with the use of
The composition of documents: the experimental clock eight procedures (implementation delay). ASM
Platform: |
Size: 2048 |
Author: 王乐彬 |
Hits:
Description: CD PLAYER IDE CONTROLLER BY MCS51
Platform: |
Size: 89088 |
Author: nookk007 |
Hits:
Description: 精巧的ASM开发工具,带有几个具体实例,比较好的汇编IDE-ASM sophisticated development tools, with a few concrete examples
Platform: |
Size: 1035264 |
Author: chenlong |
Hits:
Description: 优龙公司FS44BOXI开发板实例程序,一共31个,包括ADC ASM ASM_C bootlodaer cache can cf dma gprs gps ide iis keyscan lcd led8X8 motor nandflash norflash pwm rtc SmartMedia_Card tftp Timer2_interrupt TouchPanel uart uClinux_driver uCOSII uCOSII_common USB_Device USB_HOST WatchDog -Dragon Company FS44BOXI excellent example of the procedure development board, a total of 31, including the ADC ASM ASM_C bootlodaer cache can cf dma gprs gps ide iis keyscan lcd led8X8 motor nandflash norflash pwm rtc SmartMedia_Card tftp Timer2_interrupt TouchPanel uart uClinux_driver uCOSII uCOSII_common USB_Device USB_HOST WatchDog
Platform: |
Size: 12361728 |
Author: 华东 |
Hits:
Description: 下面是目录介绍
ADC---------ADC模数转换实验
ASM---------汇编程序实验
ASM_c-------汇编和C语言混合实验
CF----------CF读写实验
DcMotor-----直流电机实验
DMA——-----DMA数据传输实验
GPRS--------GPRS/GSM通讯实验
GPS---------GPS全球定位实验
IDE---------IDE测试实验
IIC---------IIC读写实验
IIS---------IIS音频实验
KeyScan-----行列式键盘扫描实验
Lcd---------TFT lcd显示实验
LED8X8------8x8 LED点阵实验
NandFlash---NandFlash读写实验
NorFlash----NorFlash读写实验
Pwm---------Pwm脉宽调制实验
RS485-------RS485通讯实验
Rtc---------Rtc实时时钟实验
StepMotor---步进电机控制实验
TFTP--------TFTP网络通讯实验
Timer_Interrupt---定时器中断实验
TouchPanel----触摸屏实验
UART--------串口通讯实验
uCOSII------uCOSII移植实验
USB_Device----USB deivce通讯实验
WatchDog-----看门狗实验-The following is a directory description
ADC--------- ADC ADC test
ASM--------- assembler experiment
ASM_c------- assembly and C language mixing experiment
CF---------- CF literacy test
DcMotor----- DC motor experiment
DMA------- DMA data transfer experiment
GPRS--------GPRS/GSM communication experiment
GPS--------- GPS Global Positioning Experiment
IDE--------- IDE Testing Laboratory
IIC--------- IIC literacy test
IIS--------- IIS audio test
KeyScan----- determinant keyboard scan experiment
Lcd--------- TFT lcd display experiments
LED8X8------ 8x8 LED dot matrix experiment
NandFlash--- NandFlash literacy test
NorFlash---- NorFlash literacy test
Pwm--------- Pwm PWM test
RS485------- RS485 communication experiment
Rtc--------- Rtc Real Time Clock Experiment
StepMotor--- stepper motor control experiment
TFTP-------- TFTP network communication experiment
Timer_Interrupt--- timer interrupt test
TouchPanel---- touch screen test
UART--------
Platform: |
Size: 2073600 |
Author: asdfasdf |
Hits:
Description: 在8051单片机上实现502bit汉明码的编解码
环境是silicon的IDE
用的汇编语言-coding and decoding 502bit using hanmming code with 8051
Silicon IDE
ASM
Platform: |
Size: 96256 |
Author: 陈勋 |
Hits: