summaryrefslogtreecommitdiff
path: root/src/cmd/8a/doc.go
Commit message (Collapse)AuthorAgeFilesLines
* doc/asm: more about SP, ARM R11Russ Cox2013-11-131-1/+1
| | | | | | | | Also rename URL to /doc/asm. R=golang-dev, minux.ma, r CC=golang-dev https://codereview.appspot.com/26170043
* src/cmd/?a: link to new assembler documentRob Pike2013-11-121-0/+5
| | | | | | | | Blocked on 20930043, the CL the new text references. R=golang-dev, bradfitz CC=golang-dev https://codereview.appspot.com/18430044
* cmd/godoc: use go/build to determine package and example filesRobert Griesemer2013-02-191-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | Also: - faster code for example extraction - simplify handling of command documentation: all "main" packages are treated as commands - various minor cleanups along the way For commands written in Go, any doc.go file containing documentation must now be part of package main (rather then package documentation), otherwise the documentation won't show up in godoc (it will still build, though). For commands written in C, documentation may still be in doc.go files defining package documentation, but the recommended way is to explicitly ignore those files with a +build ignore constraint to define package main. Fixes issue 4806. R=adg, rsc, dave, bradfitz CC=golang-dev https://codereview.appspot.com/7333046
* cmd/5a, cmd/5c, cmd/6a, cmd/6c, cmd/8a, cmd/8c, cmd/ld: update referenceCarl Shapiro2013-01-181-1/+1
| | | | | | | | | Reference the 80386 compiler documentation now that the documentation for the 68020 is offline. R=golang-dev, minux.ma, rsc CC=golang-dev https://codereview.appspot.com/7127053
* tweak documentation of commandsRuss Cox2009-11-091-1/+1
| | | | | | | | | so that first sentence is better for cmd page. live at http://r45:3456/cmd/ R=gri, r http://go/go-review/1024034
* document the assemblers.Rob Pike2009-11-031-0/+14
add details about -d and -e flags in the loaders. R=rsc CC=go-dev http://go/go-review/1018031