Rev 2128 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 2128 | Rev 2465 | ||
|---|---|---|---|
| Line 1... | Line 1... | ||
| 1 | /* |
1 | /* |
| 2 | * Copyright (c) 2005 Jakub Vana |
2 | * Copyright (c) 2007 Michal Kebrt |
| 3 | * All rights reserved. |
3 | * All rights reserved. |
| 4 | * |
4 | * |
| 5 | * Redistribution and use in source and binary forms, with or without |
5 | * Redistribution and use in source and binary forms, with or without |
| 6 | * modification, are permitted provided that the following conditions |
6 | * modification, are permitted provided that the following conditions |
| 7 | * are met: |
7 | * are met: |
| Line 28... | Line 28... | ||
| 28 | 28 | ||
| 29 | /** @addtogroup arm32 |
29 | /** @addtogroup arm32 |
| 30 | * @{ |
30 | * @{ |
| 31 | */ |
31 | */ |
| 32 | /** @file |
32 | /** @file |
| - | 33 | * @brief FPU context (not implemented). |
|
| - | 34 | * |
|
| - | 35 | * GXemul doesn't support FPU on its ARM CPU. |
|
| 33 | */ |
36 | */ |
| 34 | 37 | ||
| 35 | #ifndef KERN_arm32_FPU_CONTEXT_H_ |
38 | #ifndef KERN_arm32_FPU_CONTEXT_H_ |
| 36 | #define KERN_arm32_FPU_CONTEXT_H_ |
39 | #define KERN_arm32_FPU_CONTEXT_H_ |
| 37 | 40 | ||
| 38 | #include <arch/types.h> |
41 | #include <arch/types.h> |
| 39 | 42 | ||
| 40 | #define FPU_CONTEXT_ALIGN 0 /* TODO */ |
43 | #define FPU_CONTEXT_ALIGN 0 |
| 41 | 44 | ||
| 42 | typedef struct { |
45 | typedef struct { |
| 43 | } fpu_context_t; |
46 | } fpu_context_t; |
| 44 | 47 | ||
| 45 | #endif |
48 | #endif |