//! This is not an example; this is a link-pass test #![deny(warnings)] #![no_main] #![no_std] extern crate cortex_m_rt as rt; extern crate panic_halt; use core::ptr; use rt::entry; static mut BSS1: u16 = 0; static mut BSS2: u8 = 0; static mut DATA1: u8 = 1; static mut DATA2: u16 = 1; static RODATA1: &[u8; 3] = b"012"; static RODATA2: &[u8; 2] = b"34"; #[entry] fn main() -> ! { unsafe { let _bss1 = ptr::read_volatile(&BSS1); let _bss2 = ptr::read_volatile(&BSS2); let _data1 = ptr::read_volatile(&DATA1); let _data2 = ptr::read_volatile(&DATA2); let _rodata1 = ptr::read_volatile(&RODATA1); let _rodata2 = ptr::read_volatile(&RODATA2); } loop {} } '>1-legacy Unnamed repository; edit this file 'description' to name the repository.
aboutsummaryrefslogtreecommitdiff
path: root/.eslintignore (unfollow)
AgeCommit message (Expand)AuthorFilesLines
2022-03-14[ci] update lockfile (#2773)Gravatar Fred K. Schott 6-149/+348
2022-03-14improve build perf (#2772)Gravatar Fred K. Schott 10-20/+37
2022-03-14Fix: Astro.props missing properties (#2785)Gravatar Ben Holmes 2-3/+10
2022-03-14[ci] collect statsGravatar FredKSchott 1-0/+1
2022-03-13[ci] collect statsGravatar FredKSchott 1-0/+1
2022-03-12[ci] collect statsGravatar FredKSchott 1-0/+1
2022-03-11[ci] formatGravatar natemoo-re 1-32/+32
2022-03-11[ci] release (#2770)astro@0.24.0@astrojs/parser@0.22.2Gravatar github-actions[bot] 51-279/+165
2022-03-11chore: exit prerelease modeGravatar Nate Moore 1-1/+1
2022-03-11[ci] update lockfile (#2763)Gravatar Fred K. Schott 28-236/+236
2022-03-11Fix dev resolution of client modules on Windows (#2768)Gravatar Matthew Phillips 2-1/+7
2022-03-11[ci] formatGravatar bholmesdev 1-3/+9
2022-03-11Feat: expose server on local network with new --host flag (#2760)Gravatar Ben Holmes 16-85/+238
2022-03-11Update compiler (#2767)Gravatar Nate Moore 3-6/+10
2022-03-11[ci] formatGravatar bholmesdev 1-1/+1
2022-03-11fix sitemapFilter docs (#2762)Gravatar Fred K. Schott 1-4/+8
2022-03-11[ci] collect statsGravatar FredKSchott 1-0/+1
2022-03-10[ci] formatGravatar natemoo-re 1-28/+28
2022-03-10chore: update lockfileastro@0.24.0-next.2Gravatar Nate Moore 1-27/+27
2022-03-10[ci] release (next) (#2754)Gravatar github-actions[bot] 30-53/+82
2022-03-10[ci] formatGravatar natemoo-re 2-8/+4
2022-03-10CLI: add prerelease warning (#2758)Gravatar Nate Moore 3-2/+26
2022-03-10Update util.ts (#2761)Gravatar Fred K. Schott 1-2/+2
2022-03-10fix(#2753): unescape `define:vars` (#2756)Gravatar Nate Moore 5-2/+48
2022-03-10[ci] formatGravatar natemoo-re 3-4/+6
2022-03-10Add sitemap filter option (#2755)Gravatar Nate Moore 5-4/+48
2022-03-10fix eperm ci issue on windows (#2757)Gravatar Fred K. Schott 1-0/+1
2022-03-10Feat: show 404 when `getStaticPaths` doesn't match URL (#2743)Gravatar Ben Holmes 11-52/+175
2022-03-10[ci] formatGravatar natemoo-re 1-10/+10
2022-03-10Refactor fs utils, fix flakey windows tests (#2749)Gravatar Fred K. Schott 3-80/+21
2022-03-10Support Prism in the blog template example (#2622)Gravatar Ian Bull 3-1/+12
2022-03-10[ci] formatGravatar natemoo-re 1-1/+1
2022-03-10update deps: esbuild, typescript (#2750)Gravatar Fred K. Schott 13-249/+82
2022-03-10fix component usage in portfolio-svelte 404 page (#2549)Gravatar mastercoms 1-2/+2
2022-03-10chore(ci): remove second smoke test with --experimental-static-build flag (#2...Gravatar Nate Moore 1-14/+0
2022-03-10[ci] collect statsGravatar FredKSchott 1-0/+1
2022-03-10[ci] formatGravatar FredKSchott 1-24/+24
2022-03-09update lockfileastro@0.24.0-next.1Gravatar Fred K. Schott 1-27/+27
2022-03-09[ci] release (next) (#2734)Gravatar github-actions[bot] 30-53/+91
2022-03-10[ci] formatGravatar natemoo-re 1-7/+7
2022-03-09Improve `Astro.slots` API (#2695)Gravatar Nate Moore 5-12/+63