├── .gitignore ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ExploringOptions ├── image1.png ├── image2.png ├── image3.png └── image4.png ├── LICENSE ├── README.md ├── SECURITY.md └── Target_Platforms ├── Embedded-SIG-Target-Platforms.md └── TargetPlatformMatrix.xlsx /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/sig-embedded/HEAD/.gitignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | # CODEOWNERS 2 | 3 | * @sig-embedded-chairs -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/sig-embedded/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/sig-embedded/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ExploringOptions/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/sig-embedded/HEAD/ExploringOptions/image1.png -------------------------------------------------------------------------------- /ExploringOptions/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/sig-embedded/HEAD/ExploringOptions/image2.png -------------------------------------------------------------------------------- /ExploringOptions/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/sig-embedded/HEAD/ExploringOptions/image3.png -------------------------------------------------------------------------------- /ExploringOptions/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/sig-embedded/HEAD/ExploringOptions/image4.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/sig-embedded/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/sig-embedded/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/sig-embedded/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Target_Platforms/Embedded-SIG-Target-Platforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/sig-embedded/HEAD/Target_Platforms/Embedded-SIG-Target-Platforms.md -------------------------------------------------------------------------------- /Target_Platforms/TargetPlatformMatrix.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytecodealliance/sig-embedded/HEAD/Target_Platforms/TargetPlatformMatrix.xlsx --------------------------------------------------------------------------------