(&self)
| 57 | impl SystemTable { |
| 58 | #[no_split_stack] |
| 59 | pub fn console(&self) -> Console { |
| 60 | unsafe { |
| 61 | let &SystemTable(tbl) = self; |
| 62 | Console { |
| 63 | input: (*tbl).ConIn, |
| 64 | output: (*tbl).ConOut, |
| 65 | } |
| 66 | } |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | fn unpack<T>(slice: &[T]) -> (*T, uint) { |