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?

ilasmでstack machine その51

Posted at

概要

ilasmでstack machineやってみた。
練習問題やってみた。

練習問題

MessageBoxを使え。

サンプルコード

.assembly extern mscorlib { }
.assembly extern System.Windows.Forms {
	.publickeytoken = (B7 7A 5C 56 19 34 E0 89 )
	.ver 4:0:0:0
}
.assembly ah { }
.method static void Main() cil managed {
	.entrypoint
	.maxstack 2
	ldstr 	"Hello!!"
	call 	valuetype [System.Windows.Forms]System.Windows.Forms.DialogResult [System.Windows.Forms]System.Windows.Forms.MessageBox::Show(string)
	pop
	ret
}

実行結果

image.png

以上。

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?