summaryrefslogtreecommitdiff
path: root/static/v10/man1/linkdata.1
diff options
context:
space:
mode:
authorJacob McDonnell <jacob@jacobmcdonnell.com>2026-04-26 16:38:00 -0400
committerJacob McDonnell <jacob@jacobmcdonnell.com>2026-04-26 16:38:00 -0400
commit97d5c458cfa039d857301e1ca7d5af3beb37131d (patch)
treeb460cd850d0537eb71806ba30358840377b27688 /static/v10/man1/linkdata.1
parentb89dc2331a50c63f8b33272a5c4c61ab98abdaa3 (diff)
build: Better Build System
Diffstat (limited to 'static/v10/man1/linkdata.1')
-rw-r--r--static/v10/man1/linkdata.134
1 files changed, 0 insertions, 34 deletions
diff --git a/static/v10/man1/linkdata.1 b/static/v10/man1/linkdata.1
deleted file mode 100644
index 63ddb0ef..00000000
--- a/static/v10/man1/linkdata.1
+++ /dev/null
@@ -1,34 +0,0 @@
-.TH LINKDATA 1
-.SH NAME
-link \- group data files into the text segment of a .o file
-.SH SYNOPSIS
-.B linkdata file1 file2 ...
-.br
-.SH DESCRIPTION
-.PP
-.IR linkdata
-reads the named files and generates an a.out-format file on the
-standard output. The resulting file is as if it were assembled from
-the following .s file. (The files can be rather long, so it's not
-a good idea to make an actual assembly language file.)
-.DS L
-.ft C
- .text
- .globl datalist
- .set datalist, 1f+4 # if there are no files, use ".set datalist, 1"
-
-# repeat the following for each file
- .align 2
-1: .long 0x31
- .long 2f+4
- .long 3f+4
- .long 1f+4 # for the last file, use .long 1 instead
-2: .long strlen("filename")*16+15
- .ascii "filename"
- .align 2
-3: .word length(contents of file1)*16+15
- .byte [contents of file 1]
- .align 2
-
-.ft R
-.DE