Skip to content

Commit 6690e97

Browse files
committed
bugfix: dosbox command as an active event
1 parent 892c6a3 commit 6690e97

File tree

5 files changed

+13
-12
lines changed

5 files changed

+13
-12
lines changed

.vscodeignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
# ignore test
44
.vscode-test/**
55
out/test/**
6+
# ignore unarchieved feature
7+
dist/**
68
# ignore source
79
src/**
810
#ignore dev files

CHANGELOG.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,20 @@
44

55
## 0.2.1
66

7-
- [x] `dosbox here`增加了一个命令以在当前文件所在目录下打开dosbox,来提供更加自由的操作,见demo
7+
- [x] 增加了一个命令`dosbox here`在当前文件所在目录下打开dosbox,来提供更加自由的操作,见demo
88
- [x] 优化diagnose对fatal类错误的匹配,优化大纲视图
9-
- [x] 提供代码格式化功能(需要完善并且现在的效果并不是很好
10-
- [x] 提供查找引用功能(目前也并不完美)
9+
- [x] 提供代码格式化功能(不太完善
10+
- [x] 提供查找引用功能
1111
- [ ] webpack打包(nls部分总是失败)
1212

1313
鉴于这些功能目前可能不完善,你可以在设置中关闭他们(关闭后需要手动重启)
1414

15-
DEMO `dosbox here`示例: 代码来自[dpisdaniel/assembly-pacman](https://github.com/dpisdaniel/assembly-pacman)
15+
DEMO `dosbox here`:(代码来自[dpisdaniel/assembly-pacman](https://github.com/dpisdaniel/assembly-pacman))
1616

17-
![demo pacman](https://github.com/xsro/masm-tasm/raw/next/pics/demo_pacman.gif)
17+
1. 打开命令面板,win下为`ctrl+shift+p`
18+
2. 在打开的dosbox窗口,输入汇编、链接、运行命令`tasm projf`,`tlink projf`,`projf`
19+
20+
![demo pacman](https://github.com/xsro/masm-tasm/raw/master/pics/demo_pacman.gif)
1821

1922
## 0.2.0
2023

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,13 @@ dosbox #if successfully opened the dosbox, it is largely possible for the extens
7676

7777
### About use of DOSBox
7878

79-
The extension will mount some folder to DOSBox 's disk. Please don't modify them. There are:
79+
The extension will mount some folder to DOSBox 's disk. Please don't modify them. They are:
8080

8181
|in DOSBox|real path in the computor|
8282
|---|---|
8383
|C:|the path of tools folder|
8484
|D:|the path of the work space|
85+
|E:|the path of the editor file's folder(when using command `dosbox here`)|
8586
|X:|the path of some scripts for the extension to use|
8687

8788
## Docs & Thanks & Licenses

init.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"onLanguage:masm",
2626
"onLanguage:tasm",
2727
"onLanguage:assembly",
28-
"onCommand:dosboxhere"
28+
"onCommand:masm-tasm.dosboxhere"
2929
],
3030
"main": "./out/extension.js",
3131
"contributes": {

0 commit comments

Comments
 (0)