0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

nasmの作法

Last updated at Posted at 2021-06-13

概要

nasmの作法、調べてみた。

環境

windows vista 32bit
visual studio 2010
nasm 2.15 win32

参考にしたページ

実行

visual studio 2010のコマンドプロンプトで実行。

Setting environment for using Microsoft Visual Studio 2010 x86 tools.

C:\Program Files\Microsoft Visual Studio 10.0\VC>cd c:\nasm

c:\nasm>nasm -fwin32 hello.asm

c:\nasm>link hello.obj /ENTRY:main /SUBSYSTEM:CONSOLE /defaultlib:kernel32.lib
Microsoft (R) Incremental Linker Version 10.00.30319.01
Copyright (C) Microsoft Corporation.  All rights reserved.


c:\nasm>hello
Hello, World

c:\nasm>

以上。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?