Skip to content

Commit fee8d6c

Browse files
committed
💬 update repo link
1 parent bb542a0 commit fee8d6c

File tree

8 files changed

+29
-26
lines changed

8 files changed

+29
-26
lines changed

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
- 通过终端命令`open -a DOSBox --args <dosbox args>`支持在MAC(darwin)中打开dosbox
3434
- 支持通过设置`masmtasm.dosbox.command`自定义用来打开DOSBox的命令
3535
- 0.6.1
36-
- 修复[#10](https://github.com/xsro/masm-tasm/issues/10)`jle``jge`两条指令的悬浮提示错误
36+
- 修复[#10](https://github.com/dosasm/masm-tasm/issues/10)`jle``jge`两条指令的悬浮提示错误
3737
- 0.6.2
3838
- 废弃`masmtasm.dosbox.CustomResolution`设置选项,通过`masmtasm.dosbox.config`来支持更多的dosbox选项
3939
- 提供MASM的部分错误信息跳转到Microsoft docs页面的CodeAction
@@ -50,15 +50,15 @@
5050

5151
### 0.4.0
5252

53-
- fix [#6](https://github.com/xsro/masm-tasm/issues/6): 修复打开单个汇编文件插件不激活的问题
53+
- fix [#6](https://github.com/dosasm/masm-tasm/issues/6): 修复打开单个汇编文件插件不激活的问题
5454
- 假如文件languageID是assembly,masm,tasm时插件会激活
5555
- 增加一个设置选项`masmtasm.language.Hover`以决定是否显示悬浮提示Hover
5656

5757
### 0.3.0
5858

5959
- windows下打开dosbox会弹出控制台窗口,可以在设置`masmtasm.dosbox.console`中选择显示,最小化还是不显示这个窗口。
6060
- (0.3.1)dosbox更新到0.74-3
61-
- (0.3.1)修复Dosbox无法挂载带有中文的路径的问题[#5](https://github.com/xsro/masm-tasm/issues/5)
61+
- (0.3.1)修复Dosbox无法挂载带有中文的路径的问题[#5](https://github.com/dosasm/masm-tasm/issues/5)
6262

6363
### 0.2.2/0.2.3
6464

@@ -81,7 +81,7 @@ DEMO `dosbox here`:(代码来自[dpisdaniel/assembly-pacman](https://github.com/
8181
1. 打开命令面板,win下为`ctrl+shift+p`
8282
2. 在打开的dosbox窗口,输入汇编、链接、运行命令`tasm projf`,`tlink projf`,`projf`
8383

84-
![demo pacman](https://github.com/xsro/masm-tasm/raw/main/pics/demo_pacman.gif)
84+
![demo pacman](https://github.com/dosasm/masm-tasm/raw/main/pics/demo_pacman.gif)
8585

8686
## 0.2.0
8787

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[Chinese](README.zh.md)|[English](README.md)|
44
[中文 in gitee](https://gitee.com/dosasm/masm-tasm/)|
5-
[more versions](https://github.com/xsro/masm-tasm/releases)
5+
[more versions](https://github.com/dosasm/masm-tasm/releases)
66

77
Language support for DOS assembly,may be suitable for studying MASM/TASM in DOSBox and the course *principles& peripheral technology of microprocessor*.
88

@@ -46,8 +46,8 @@ when you are editing `assembly` files ,you can right click at the editor panel,t
4646

4747
- Editor Command "`Open Emulator`":Open emulator at your file's folder. If your file's path is not readable for DOS emulator, your file will be copied as `T.ASM` in DOS emulator. (For DOSBox, copy your file to work space folder and mount this folder to DOSBox disk `D:`)
4848
- Command "`Doxbox here`": The extension will Open DOSBox and mount your active editor file's folder directly to DOSBox 's disk `D:` with no path-checking.
49-
- some ASM commands you may need: [ASM_commands](https://github.com/xsro/masm-tasm/wiki/ASM_commands).
50-
- Some interesting assembly codes you may need: [DOSBox ASM codes](https://github.com/xsro/masm-tasm/wiki/dosbox)
49+
- some ASM commands you may need: [ASM_commands](https://github.com/dosasm/masm-tasm/wiki/ASM_commands).
50+
- Some interesting assembly codes you may need: [DOSBox ASM codes](https://github.com/dosasm/masm-tasm/wiki/dosbox)
5151

5252
### Demo 3: code Formate,Diagnose and more
5353

@@ -156,8 +156,8 @@ if you want to use your tools of assembler, please paste your path to the settin
156156
- inspired by [Woodykaixa](https://github.com/Woodykaixa)'s [masm-code](https://github.com/Woodykaixa/masm-code)
157157
- Thanks to excellent DOS emulator: [dosbox](https://www.dosbox.com), [caiiiycuk](https://github.com/caiiiycuk)'s [js dos](https://js-dos.com/) and [msdos player](http://takeda-toshiya.my.coocan.jp/msdos)
158158
- Thanks to [Roncho](https://marketplace.visualstudio.com/publishers/Roncho) 's extension [Assembly (TASM)](https://marketplace.visualstudio.com/items?itemName=Roncho.assembly-8086),[blindtiger](https://github.com/9176324)'s [masm](https://github.com/9176324/bltg-team.masm) for ASM language information
159-
- Welcome [issue](https://github.com/xsro/masm-tasm/issues) and PR to build a better extension with your help
159+
- Welcome [issue](https://github.com/dosasm/masm-tasm/issues) and PR to build a better extension with your help
160160
- [THANKS](doc/Thanks.md)
161-
- [some infomation :wiki](https://github.com/xsro/masm-tasm/wiki)
161+
- [some infomation :wiki](https://github.com/dosasm/masm-tasm/wiki)
162162

163163
Enjoy!:smile:

README.zh.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# 16位/32位DOS汇编语言支持
22

33
[中文](README.zh.md)|[English](README.md)|
4-
[其他版本](https://github.com/xsro/masm-tasm/releases)
4+
[其他版本](https://github.com/dosasm/masm-tasm/releases)
55

66
:raising_hand:实现对DOSBox等汇编工具的快速调用。主要针对DOS下的单文件汇编语言学习,可能适合学习《汇编语言》、《微机原理》等课程,主要功能特性如下:
77

@@ -43,8 +43,8 @@
4343

4444
- "`Open Emulator`"编辑器命令:会在DOS模拟器中打开文件所在目录。如果文件路径对于dosbox来说难以访问,插件会将编辑器当前文件复制为`T.asm`(对于DOSBox,插件会复制文件到独立工作文件夹,并将该文件夹挂载到DOSBox中的`D:`盘)
4545
- "`Doxbox here`"命令 会直接将当前文件所在文件夹挂载到DOSBox中的“D:"盘,与Open Emulator命令相似,但是默认只会打开DOSBox并且不会自动判断路径是否可以访问。**注意** 这时在DOSBox中的操作会直接影响电脑中该文件夹中的**文件**,而且通常都是不可逆的
46-
- 汇编常用命令: [ASM_commands](https://github.com/xsro/masm-tasm/wiki/ASM_commands).
47-
- 有些有趣的汇编代码: [DOSBox ASM codes](https://github.com/xsro/masm-tasm/wiki/dosbox)
46+
- 汇编常用命令: [ASM_commands](https://github.com/dosasm/masm-tasm/wiki/ASM_commands).
47+
- 有些有趣的汇编代码: [DOSBox ASM codes](https://github.com/dosasm/masm-tasm/wiki/dosbox)
4848

4949
### Demo 3:flashlight:: 代码格式化与错误输出
5050

@@ -150,7 +150,7 @@ VSCode文档中关于插件安装路径的说明[VSCode-doc](https://code.visual
150150
- 插件使用了[Roncho](https://marketplace.visualstudio.com/publishers/Roncho)[Assembly (TASM)](https://marketplace.visualstudio.com/items?itemName=Roncho.assembly-8086)中的汇编语法信息
151151
- 一些[相关信息](doc/license_and_info.md)[鸣谢](doc/Thanks.md)
152152
- gitee 上的一些笔记和代码: [笔记](https://dosasm.gitee.io/),[代码](https://gitee.com/dosasm/asmcodes)
153-
- 一些相关资料:[wiki](https://github.com/xsro/masm-tasm/wiki)
154-
- 插件难免会有一些bug,欢迎到github发[issue](https://github.com/xsro/masm-tasm/issues)或者邮件`xsro@foxmail.com`,一起交流和完善。
153+
- 一些相关资料:[wiki](https://github.com/dosasm/masm-tasm/wiki)
154+
- 插件难免会有一些bug,欢迎到github发[issue](https://github.com/dosasm/masm-tasm/issues)或者邮件`xsro@foxmail.com`,一起交流和完善。
155155

156156
Enjoy!:smile:

doc/Thanks.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Thank You
22

3-
- [#3](https://github.com/xsro/masm-tasm/issues/3): [WMF1997](https://github.com/WMF1997)
4-
- [#4](https://github.com/xsro/masm-tasm/issues/4): [Define2017](https://github.com/Define2017)
5-
- [#6](https://github.com/xsro/masm-tasm/issues/6): [my-vegatable-has-exploded](https://github.com/my-vegatable-has-exploded)
6-
- [#10](https://github.com/xsro/masm-tasm/issues/10): [lllsy12138](https://github.com/lllsy12138)
3+
- [#3](https://github.com/dosasm/masm-tasm/issues/3): [WMF1997](https://github.com/WMF1997)
4+
- [#4](https://github.com/dosasm/masm-tasm/issues/4): [Define2017](https://github.com/Define2017)
5+
- [#6](https://github.com/dosasm/masm-tasm/issues/6): [my-vegatable-has-exploded](https://github.com/my-vegatable-has-exploded)
6+
- [#10](https://github.com/dosasm/masm-tasm/issues/10): [lllsy12138](https://github.com/lllsy12138)
77

88
## licence and info
99

doc/develop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
```bash
88
cd myFolder
9-
git clone https://github.com/xsro/masm-tasm.git
9+
git clone https://github.com/dosasm/masm-tasm.git
1010
```
1111

1212
### 1.install nodejs and npm

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
],
2424
"badges": [
2525
{
26-
"url": "https://github.com/xsro/masm-tasm/raw/main/pics/asm.png",
27-
"href": "https://github.com/xsro/masm-tasm/wiki/dosbox",
26+
"url": "https://github.com/dosasm/masm-tasm/raw/main/pics/asm.png",
27+
"href": "https://github.com/dosasm/masm-tasm/wiki/dosbox",
2828
"description": "some interesting ASM code"
2929
}
3030
],
@@ -435,7 +435,7 @@
435435
"pretest": "yarn compile && tsc -p ./src",
436436
"test": "node ./dist/test/runTest.js",
437437
"vscode:prepublish": "yarn clean && yarn compile",
438-
"publish": "vsce publish --baseContentUrl https://github.com/xsro/masm-tasm/blob/main/ --baseImagesUrl https://github.com/xsro/masm-tasm/raw/main/ ",
438+
"publish": "vsce publish --baseContentUrl https://github.com/dosasm/masm-tasm/blob/main/ --baseImagesUrl https://github.com/dosasm/masm-tasm/raw/main/ ",
439439
"package": "vsce package"
440440
},
441441
"devDependencies": {
@@ -462,15 +462,15 @@
462462
},
463463
"repository": {
464464
"type": "git",
465-
"url": "https://github.com/xsro/masm-tasm"
465+
"url": "https://github.com/dosasm/masm-tasm"
466466
},
467467
"bugs": {
468-
"url": "https://github.com/xsro/masm-tasm/issues",
468+
"url": "https://github.com/dosasm/masm-tasm/issues",
469469
"email": "xsro@foxmail.com"
470470
},
471471
"license": "MIT",
472472
"dependencies": {
473473
"emulators": "^0.67.0",
474474
"emulators-ui": "^0.68.0"
475475
}
476-
}
476+
}

resources/hoverinfo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ i18n:
3838
- zh-cn
3939
```
4040

41-
Interrupt call see [list](https://github.com/xsro/masm-tasm/wiki/Interrupt-list-en)
41+
Interrupt call see [list](https://github.com/dosasm/masm-tasm/wiki/Interrupt-list-en)
4242

4343
syntax: `int [interruptIndex]`
4444

src/i18n.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
import { workspace } from "vscode";
2+
const fs = workspace.fs;
3+
14
export function localize(key: string, value: string, ...args: string[]): string {
25
for (const argidx in args) {
36
value = value.replace(`{${argidx}}`, args[argidx]);

0 commit comments

Comments
 (0)