Skip to content

Commit

Permalink
fix(#308): No documentation for DCB directive
Browse files Browse the repository at this point in the history
  • Loading branch information
prb28 committed Jul 11, 2024
1 parent 793b002 commit 3572275
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"configurations": [
{
"name": "Generate summary",
"type": "python",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/scripts/build/genDocSummary.py",
"console": "integratedTerminal",
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

### [1.8.11] - pre-release
- [Issue #308](https://github.com/prb28/vscode-amiga-assembly/issues/308) *neildavis* No documentation for DCB directive

### [1.8.10] - stable-release - 2023-07-01

### [1.8.9] - pre-release
Expand Down
2 changes: 1 addition & 1 deletion docs/directives/dbc.md → docs/directives/dcb.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# DBC
# DCB

## Syntax
```assembly
Expand Down
2 changes: 1 addition & 1 deletion docs/libs/exec/AllocMem.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ AllocMem(25,MEMF_CLEAR) - Allocate the best available memory, and
clear it before returning.
AllocMem(128,MEMF_CHIP) - Allocate chip memory
AllocMem(128,MEMF_CHIP|MEMF_CLEAR) - Allocate cleared chip memory
AllocMem(821,MEMF_CHIP|MEMF_PUBLIC|MEMF_CLEAR) - Allocate cleared,
AllocMem(128,MEMF_CHIP|MEMF_PUBLIC|MEMF_CLEAR) - Allocate cleared,
public, chip memory.
NOTE
Expand Down
2 changes: 1 addition & 1 deletion docs/toc.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@
|[data_c](directives/data_c.md)|Equivalent to `section data_c,data,chip`|
|[data_f](directives/data_f.md)|Equivalent to `section data_f,data,fast`|
|[db](directives/db.md)|Equivalent to `dc.b` for ArgAsm, BAsm, HX68, Macro68, ProAsm, etc. compatibility|
|[dbc](directives/dbc.md)|Insert `<exp>` zero or `<fill>` bytes/words into the current section|
|[dc](directives/dc.md)|Assign the integer or string constant operands into successive bytes/words of memory in the current section|
|[dcb](directives/dcb.md)|Insert `<exp>` zero or `<fill>` bytes/words into the current section|
|[dl](directives/dl.md)|Equivalent to `dc.l` for ArgAsm, BAsm, HX68, Macro68, ProAsm, etc. compatibility|
|[dr](directives/dr.md)|Calculates `<expN> - <current pc value>` and stores it into successive bytes/words of memory in the current section|
|[dw](directives/dw.md)|Equivalent to `dc.w` for ArgAsm, BAsm, HX68, Macro68, ProAsm, etc. compatibility|
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"type": "git",
"url": "https://github.com/prb28/vscode-amiga-assembly"
},
"version": "1.8.10",
"version": "1.8.11",
"publisher": "prb28",
"engines": {
"vscode": "^1.90.0"
Expand Down

0 comments on commit 3572275

Please sign in to comment.