gpt4 book ai didi

assembly - 从汇编语言运行另一个程序

转载 作者:行者123 更新时间:2023-12-01 16:22:13 25 4
gpt4 key购买 nike

我现在正在Windows 7 MASM32中学习x86汇编语言,我想制作一个可以打开记事本的脚本。我查看了谷歌,似乎找不到任何东西。我怎样才能做到这一点?

如有任何帮助,我们将不胜感激。

谢谢

最佳答案

查看 CreateProcess 或 ShellExecute

push    offset proc_info        ;; lpProcessInformation
push offset startup_info ;; lpStartupInfo
push offset new_dir ;; lpCurrentDirectory
push 00h ;; lpEnviroment (get from calling process)
push 00h ;; dwCreatingFlags
push 00h ;; lpInheritHandles = FALSE
push 00h ;; lpThreadAttributes
push 00h ;; lpProcessAttributes (default process descriptor)
push offset params ;; lpCommandLine =
push offset app ;; lpApplicationName
extrn CreateProcessA: proc
call CreateProcessA

;; ...

proc_info:
pi_hProcess dd ?
pi_hThread dd ?
pi_dwProcessId dd ?
pi_dwThreadId dd ?
;;---------------------------------------------------------------
startup_info:
si_cb dd si_len
si_lpReserved dd 0 ;; NULL
si_lpDesktop dd 0 ;; NULL
si_lpTitle dd 0 ;; NULL
si_dwX dd 0
si_dwY dd 0
si_dwXSize dd 0
si_dwYSize dd 0
si_XCountsChar dd 0
si_YCountsChar dd 0
si_dwFillAttribute dd 0
si_dwFlags dd 0
si_wShowWindow dw 0 ;; SW_HIDE
si_cbReserved2 dw 0
si_lpReserved2 dd 0 ;; NULL
si_hStdInput dd 0 ;;
si_hStdOutput dd 0 ;; IGNORED
si_hStdError dd 0 ;;
si_len equ $-startup_info

关于assembly - 从汇编语言运行另一个程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11964935/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com