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?

中古ノート、買ってみた。 その142

0
Posted at

概要

中古ノート買ってみた。
windows10でfasmをやってみた。
練習問題、やってみた。

練習問題

日本語、表示せよ。

コンパイル、実行結果

>fasm hello2.asm
flat assembler  version 1.73.34  (1048576 kilobytes memory)
4 passes, 0.1 seconds, 1536 bytes.

>hello2

写真

image.png

サンプルコード

include 'C:\Program Files (x86)\fasmw17334\INCLUDE\win64wx.inc'
include 'C:\Program Files (x86)\fasmw17334\INCLUDE\encoding\utf8.inc'

.code
start:
	invoke MessageBox, HWND_DESKTOP, 'こんにちは、世界。', 'メッセージ', MB_OK
	invoke ExitProcess, 0 

.end start



以上。

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?