Skip to content

Commit

Permalink
Changes to opcode tables for z16 support (z390development#511)
Browse files Browse the repository at this point in the history
* Copy over Don's changes for Issue 414

* Issue z390development#503 add opcode tables for z16, restructure code for machine and optable options processing

* Fix z390development#486 remove defined opcodes from opcode tables documenting them explicitly as undefined

* Fix incorrect file extension

* add quick ref info for git/gradle to contribute_code file

* fix comment text and quickref for gradle commands
  • Loading branch information
abekornelis authored Jul 11, 2023
1 parent b243519 commit 286565b
Show file tree
Hide file tree
Showing 3 changed files with 341 additions and 287 deletions.
38 changes: 37 additions & 1 deletion doc/contributing/contribute_code.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,22 @@ the bldjar script.

`bash> bash/bldjar`

## Test the jar

gradle info: https://docs.gradle.org/current/userguide/userguide.html

in z390, to access and use the gradle commands, you first have to
make the z390test subdirectory your current or working directory.

The test scripts are in subdirectory z390test\src\test\groovy\org\z390\test

### Quick reference with some gradle commands

Action | Command
------------------------------------------|------------
get a list of gradlew command options | gradlew --help
force a test run | gradlew test -—rerun

## Proposing new functionality

Enhancements are welcome, but be aware that you are stepping into
Expand Down Expand Up @@ -220,4 +236,24 @@ The following preamble should be applied to all programs
.* Macro documentation goes here
.**********************************************************************
```
```

#### Quick reference with some git commands

git info: https://git-scm.com
git documentation:https://git-scm.com/doc

Action | Command
------------------------------------------|------------
get list of available commands | git help
get syntax details for a git command | git help <command>
create local clone of git repo | git clone <url> <subdir>
review status of current branch | git status
get list of all defined branches | git branch -v --all
prepare commit | git add .
commit a set of changes | git commit -m"desriptive comments"
push changes to your own fork | git push
graphical display of branches | git log --graph --oneline --decorate --all
-- > when viewing the bracnches displayed | <Enter> to scroll 1 line, <PgDn> to scroll a page, q to quit
go 'back in time' to a specific commit | git branch -f <new_branch> [<start-point>]
| git switch <new_branch>
23 changes: 0 additions & 23 deletions doc/getting_started/git_commands.txt

This file was deleted.

Loading

0 comments on commit 286565b

Please sign in to comment.