- Embedded Systems Architecture
- Daniele Lacamera
- 147字
- 2021-06-25 21:54:57
Conventions used
There are a number of text conventions used throughout this book.
code_in_text: Indicates code words in text, folder names, filenames, file extensions, pathnames, user input, and interaction with the command console. Here is an example: "Compile the source file, hello.c, to produce the executable."
A block of code is set as follows:
#include <stdio.h>
int main(void) {
printf("Hello, world!");
return 0;
}
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
CFLAGS=-Wall
hello.o: hello.c
gcc -c -o $(@) $(^) $(CFLAGS)
Any command-line input or output is written as follows:
$ gcc -c -o hello.o hello.c
$ make clean
Commands for the debugger console are written as follows:
> add-symbol-file app.elf 0x1000
> bt full
Bold: Indicates a new term, an important word, or words that you see onscreen.
推薦閱讀
- Hands-On DevOps with Vagrant
- Linux網絡操作系統與實訓(第三版)
- Linux性能優化
- 高性能Linux服務器構建實戰:運維監控、性能調優與集群應用
- Linux操作系統應用編程
- 網絡操作系統教程:Windows Server 2016管理與配置
- Fedora 12 Linux應用基礎
- 從實踐中學習Windows滲透測試
- 嵌入式微系統
- bash shell腳本編程經典實例(第2版)
- Windows網絡編程(第2版)
- Implementing Domain-Specific Languages with Xtext and Xtend(Second Edition)
- Docker容器技術與運維
- Docker for Developers
- Apache ShardingSphere權威指南