DELTA 517045 2178 27 SVN67 q凞r10ENDREP DELTA SVN乄乊乄乄--- src/emu.c.orig 2003-07-11 13:43:26 UTC +++ src/emu.c @@ -54,6 +54,8 @@ Uint8 jmap[8]={1,1,0,0,3,2,0,1}; Sint16 *joy_axis; Uint8 *joy_but; +GNGB_CONF conf; + /* Configuration File */ #define UINTEGER8 1 ENDREP DELTA SVN俀係俀俀--- src/emu.h.orig 2003-05-09 10:32:27 UTC +++ src/emu.h @@ -64,11 +64,11 @@ typedef struct { Sint32 pal[5][4]; }GNGB_CONF; -GNGB_CONF conf; +extern GNGB_CONF conf; -SDL_Joystick *sdl_joy; +extern SDL_Joystick *sdl_joy; -Uint16 key[SDLK_LAST]; +extern Uint16 key[SDLK_LAST]; extern Sint16 *joy_axis; extern Uint8 *joy_but; ENDREP DELTA SVN!#!!--- src/interrupt.c.orig 2005-12-11 11:18:27 UTC +++ src/interrupt.c @@ -28,6 +28,9 @@ #define DELAY_CYCLE 24 +GBTIMER *gbtimer; +GBLCDC *gblcdc; + static const Uint16 lcd_cycle_tab[2][5]={{204,456,80,172,80}, /* GB */ {204*2,456*2,80*2,172*2,80*2}}; /* CGB */ ENDREP DELTA SVN僰僲僰僰--- src/interrupt.h.orig 2003-05-09 05:25:27 UTC +++ src/interrupt.h @@ -68,9 +68,9 @@ typedef struct { Uint8 *vram_pal_line[160]; }GBLCDC; -GBLCDC *gblcdc; +extern GBLCDC *gblcdc; -Uint8 vram_pal_line_temp[160][4]; +extern Uint8 vram_pal_line_temp[160][4]; extern Uint8 vram_init_pal; #define gb_set_pal_bck(v) { \ @@ -98,7 +98,7 @@ typedef struct { Sint32 cycle; }GBTIMER; -GBTIMER *gbtimer; +extern GBTIMER *gbtimer; void gblcdc_init(void); void gblcdc_reset(void); ENDREP DELTA SVN68Ậ--- src/main.c.orig 2003-07-11 17:11:56 UTC +++ src/main.c @@ -45,7 +45,7 @@ #include "save.h" -extern SDL_Joystick *sdl_joy; +SDL_Joystick *sdl_joy; void exit_gngb(void) { ENDREP DELTA 425482 296 297 SVN廲4#;"C-?K 5-,峜933,6 +33,10 @@ #include "message.h" #include "sgb.h" +Uint16 key[SDLK_LAST]; + +Uint8 vram_pal_line_temp[160][4]; + static Uint8 gb_pad; Uint8 rom_mask; @@ -67,7 +7168 +763,10- ENDREP DELTA SVN乶乸乶乶--- src/menu.c.orig 2004-01-15 06:32:11 UTC +++ src/menu.c @@ -45,6 +45,8 @@ int stop_all=0; +MENU *current_menu; + Uint8 radio_group[256]; SDL_Color buttonpal[]={{255,255,255},{214,214,214},{150,150,150},{0,0,0},{195,195,195}}; ENDREP DELTA SVN--- src/menu.h.orig 2003-04-03 13:27:29 UTC +++ src/menu.h @@ -49,7 +49,7 @@ typedef struct MENU{ #define DRAW_WHEN_ACTIVE 1 extern MENU main_menu; -MENU *current_menu; +extern MENU *current_menu; void loop_menu(MENU *m); void display_menu(MENU *m); ENDREP DELTA SVN乢乤乢乢--- src/message.c.orig 2003-04-03 13:27:29 UTC +++ src/message.c @@ -34,6 +34,7 @@ static int tempo_mes; #define BUF_ALPHA 240 +int wl,hl,xm,ym; char mes_buf[50]; char info_buf[50]; //extern SDL_Surface *gb_screen; ENDREP DELTA SVN乲乵乲乲--- src/message.h.orig 2003-06-28 08:42:03 UTC +++ src/message.h @@ -21,7 +21,7 @@ #include -int wl,hl,xm,ym; +extern int wl,hl,xm,ym; //extern void (*draw_message)(int x,int y,char *mes); extern SDL_Surface *fontbuf; ENDREP DELTA SVN乴乶乴乴--- src/rom.c.orig 2003-07-19 16:04:45 UTC +++ src/rom.c @@ -51,6 +51,9 @@ Sint16 rom_type=UNKNOW_TYPE; Uint8 rom_gb_type=UNKNOW; +char *rom_name; +ROM_TIMER *rom_timer; + int check_dir(char *dir_name) { #ifdef WIN32 BOOL res; ENDREP DELTA SVN--- src/rom.h.orig 2003-04-03 13:27:29 UTC +++ src/rom.h @@ -37,7 +37,7 @@ #define SRAM 0x200 #define HUC1 0x400 -char *rom_name; +extern char *rom_name; extern Sint16 rom_type; // rom_gb_suport @@ -52,7 +52,7 @@ typedef struct { Uint8 regl[5]; // register locked }ROM_TIMER; // MBC3 -ROM_TIMER *rom_timer; +extern ROM_TIMER *rom_timer; int open_rom(char *filename); ENDREP DELTA SVN侽俀侽侽--- src/serial.c.orig 2003-07-27 16:20:30 UTC +++ src/serial.c @@ -51,11 +51,16 @@ #define SOCKET int #endif +Sint8 gblisten; + SDL_Thread *thread; int thread_fun(void *data); SOCKET dest_socket=-1; SOCKET listen_socket=-1; + +Sint16 serial_cycle_todo; +gbserial_t gbserial; void gngb_closesocket(SOCKET s){ #ifdef WIN32 ENDREP DELTA SVN儅儅儅--- src/serial.h.orig 2003-05-16 16:35:58 UTC +++ src/serial.h @@ -21,7 +21,7 @@ #include "global.h" -struct { +typedef struct { Sint16 cycle_todo; Uint16 p; Uint8 b; @@ -29,10 +29,12 @@ struct { Uint8 check; Uint8 wait; Uint8 ready2read; -}gbserial; +} gbserial_t; -Sint16 serial_cycle_todo; -Sint8 gblisten; +extern gbserial_t gbserial; + +extern Sint16 serial_cycle_todo; +extern Sint8 gblisten; void gbserial_init(int server_side,char *servername); void gbserial_close(void); ENDREP DELTA SVN&(&&--- src/sgb.c.orig 2003-08-09 09:23:37 UTC +++ src/sgb.c @@ -28,6 +28,11 @@ #define SGB_CMD_END() {sgb.cmd=0xff;sgb.nb_pack=-1;} #define SGB_COLOR(c) ((((c)&0x7C00)>>10)|(((c)&0x3E0)<<1)|(((c)&0x1F)<<11)) +SGB sgb; +Uint8 sgb_mask; + +Uint16 sgb_pal[4][4]; /* 4 pallete of 4 colour */ +Uint8 sgb_pal_map[20][18]; /* Map of Pallete Tiles */ Uint8 sgb_tiles[256*32]; Uint8 sgb_map[32*32]; Uint8 sgb_att[32*32]; ENDREP DELTA SVN働僐働働--- src/sgb.h.orig 2003-04-03 13:27:29 UTC +++ src/sgb.h @@ -39,12 +39,12 @@ typedef struct { Uint8 player; }SGB; -SGB sgb; +extern SGB sgb; -Uint16 sgb_pal[4][4]; /* 4 pallete of 4 colour */ -Uint8 sgb_pal_map[20][18]; /* Map of Pallete Tiles */ +extern Uint16 sgb_pal[4][4]; /* 4 pallete of 4 colour */ +extern Uint8 sgb_pal_map[20][18]; /* Map of Pallete Tiles */ -Uint8 sgb_mask; +extern Uint8 sgb_mask; extern SDL_Surface *sgb_buf; ENDREP DELTA SVN--- src/sound.c.orig 2003-04-03 13:27:29 UTC +++ src/sound.c @@ -53,10 +53,17 @@ Uint16 wduty[4][8] = {0,0,0,-1,-1,-1,-1,-1 } }; +SoundM1 snd_m1; +SoundM2 snd_m2; +SoundM3 snd_m3; +SoundM4 snd_m4; +SoundG snd_g; double freq_table[2048]; double freq_table_m3[2048]; long double freq_table_m4[256]; +Uint32 sample_rate; +Uint16 sample_per_update; float lastpos=0,curpos=0; Uint32 buf_size; ENDREP DELTA SVNx^澰Mo0痼O躆D%"z11洍-;L R什e薹醇(]ZJ=%0 (Yh杫Eee櫝4y@枀 1, 6 w<8鳉窙递 鑒茼4朽1VEfI枱僱y櫿眖J)枢Zd膅'[) 聕Yls{誱nJU塆t蛏 0u躮m庠垓翎禐$"1敎U!圇τW[僶鸯蔨笭嫳^腨痤 剘H'舦▎外过%嶞=p枪 :UH$陸Hb9*$類6TL蹳?WFL 赐薸2钌X茵<*灿O惻";Dqビ迋霩3y 6绨)gy 掏>=圛衙』醯\c嶛oq\йQ晒+] !MF )?孃)%痱魘暗?= oENDREP DELTA SVN--- src/video_std.c.orig 2005-12-11 09:53:02 UTC +++ src/video_std.c @@ -30,14 +30,21 @@ static Uint32 std_flag; SDL_Surface *back=NULL; +Uint8 rb_on; +Uint8 rb_shift; - Sint8 rb_tab[2][RB_SIZE]={{0,-2,2,-2,2}, {0,-1,-1,1,1}}; VIDEO_MODE video_std; +SDL_Rect scrR; +SDL_Rect dstR; SDL_Rect clip_rct; +SDL_Rect ov_rect; + +int scxoff,scyoff; + Uint8 win_line=0; /* ENDREP DELTA SVN侾俁侾侾--- src/video_std.h.orig 2003-04-03 13:27:29 UTC +++ src/video_std.h @@ -27,9 +27,9 @@ extern Sint8 rb_tab[2][RB_SIZE]; extern SDL_Surface *back; -Uint8 rb_shift; -SDL_Rect dstR; -SDL_Rect scrR; +extern Uint8 rb_shift; +extern SDL_Rect dstR; +extern SDL_Rect scrR; void draw_screen_sgb_std(void); void draw_screen_wb_std(void); ENDREP DELTA SVN乲乵乲乲--- src/video_yuv.c.orig 2003-04-03 13:27:29 UTC +++ src/video_yuv.c @@ -25,6 +25,10 @@ #include "memory.h" #include "message.h" +Uint32 yuv_flag; +SDL_Overlay *overlay; +yuv_t rgb2yuv[65536]; + void init_message_yuv(void) { } ENDREP DELTA SVN僔僗僔僔--- src/video_yuv.h.orig 2003-04-03 13:27:29 UTC +++ src/video_yuv.h @@ -21,16 +21,18 @@ #include "global.h" -SDL_Overlay *overlay; -SDL_Rect ov_rect; -Uint32 yuv_flag; +extern SDL_Overlay *overlay; +extern SDL_Rect ov_rect; +extern Uint32 yuv_flag; -struct yuv{ +typedef struct yuv{ Uint16 y; Uint8 u; Uint8 v; Uint32 yuy2; -}rgb2yuv[65536]; +} yuv_t; + +extern yuv_t rgb2yuv[65536]; void init_message_yuv(void); void init_rgb2yuv_table(void); ENDREP DELTA SVN68Ậ--- src/vram.c.orig 2003-05-09 05:26:00 UTC +++ src/vram.c @@ -30,6 +30,7 @@ SDL_Surface *gb_screen=NULL; +GB_SPRITE gb_spr[40]; Uint16 grey[4]; Uint8 pal_bck[4]={0,3,3,3}; ENDREP DELTA SVN%x^昉Mo侤=晨b 鳴晪i󟞵UOべ, Q>不 -崡^f2锿技7c"癒烈馻湅$6B1Y櫙澟!斑= 瞬~恝鹇輥誘=J%)揋*Iむ~V\d7X舼欽o^桍IΖ擨萻漍"!惲9彚 *輁冒Mh5詠k^p瀬i#隚W衧0Y@,x逋8[B罭 S?`MXm觻 颞 Cw)齗Ui暖簘y}=崴監e!殃]庅l遀0峏 熸賃^y吕 麪+唭諯哐qлENDREP id: 5-41784.0.r549620/8554 type: file pred: 5-41784.0.r517045/37937 count: 37 text: 549620 0 23 695 efbeb9d452d906b580b807205dc25bb0 4d18a1b0f64c7ed77ac342c9b8f445a31f62db30 549619-bs38/_4 props: 300914 71 103 0 bb58aa814bbdf5f7c1ab04a05656f5a5 cpath: /head/emulators/gngb/Makefile copyroot: 0 / id: 5-549620.0.r549620/8851 type: file count: 0 text: 549620 51 232 215 27719bf50298796ca2347fec24000bf7 836614a476ac01fb59adf35dee7649f946708d5c 549619-bs38/_7 props: 300936 2259 98 0 8dda59e103a981389badbb35c2ee62ce cpath: /head/emulators/gngb/files/patch-src_emu.c copyroot: 0 / id: 8-549620.0.r549620/9134 type: file count: 0 text: 549620 296 354 337 8d88ba83a594d0860d3b56cae3fdad45 713477f5bf35398339e0e169135c64a3330d1235 549619-bs38/_9 props: 300936 2259 98 0 8dda59e103a981389badbb35c2ee62ce cpath: /head/emulators/gngb/files/patch-src_emu.h copyroot: 0 / id: a-549620.0.r549620/9418 type: file count: 0 text: 549620 663 306 289 c03df76ae183fa2702233fe0137ce151 1dad0986a3aaebf5de3a4bdae54a01d330b9e53c 549619-bs38/_b props: 300936 2259 98 0 8dda59e103a981389badbb35c2ee62ce cpath: /head/emulators/gngb/files/patch-src_interrupt.c copyroot: 0 / id: c-549620.0.r549620/9708 type: file count: 0 text: 549620 982 508 491 9507e0601fd981e76a498894cef32b14 aca77bc0f2d7aefc3c6502a1bd81d1eba854db05 549619-bs38/_d props: 300936 2259 98 0 8dda59e103a981389badbb35c2ee62ce cpath: /head/emulators/gngb/files/patch-src_interrupt.h copyroot: 0 / id: e-549620.0.r549620/9998 type: file count: 0 text: 549620 1503 199 182 6a8e7aabb626227dd323bc1408e554d7 94d0a65c3f931f0e92c6f174fe24adb77c0a6d46 549619-bs38/_f props: 300936 2259 98 0 8dda59e103a981389badbb35c2ee62ce cpath: /head/emulators/gngb/files/patch-src_main.c copyroot: 0 / id: 6-172823.0-425482.r549620/10284 type: file pred: 6-172823.0-425482.r425482/1001 count: 4 text: 549620 1715 234 2100 8e51b07e289ece77d6e2e53eaa95821f 158d5abdda967c8cc7c0825b3f1f7523481f8b90 549619-bs38/_g props: 300936 2259 98 0 8dda59e103a981389badbb35c2ee62ce cpath: /head/emulators/gngb/files/patch-src_memory.c copyroot: 425482 /head/emulators/gngb/files/patch-src_memory.c id: h-549620.0.r549620/10667 type: file count: 0 text: 549620 1977 255 238 61c89752b5b1ffb1429728b989de891b 5c11941ab67fcdda4db1ad1e482c5e3ed39200f2 549619-bs38/_i props: 300936 2259 98 0 8dda59e103a981389badbb35c2ee62ce cpath: /head/emulators/gngb/files/patch-src_menu.c copyroot: 0 / id: j-549620.0.r549620/10954 type: file count: 0 text: 549620 2245 275 258 70406ae64df58de01a26174bd31dccb2 7a5a015d14402068b433ddc2bc9e34bd58327991 549619-bs38/_k props: 300936 2259 98 0 8dda59e103a981389badbb35c2ee62ce cpath: /head/emulators/gngb/files/patch-src_menu.h copyroot: 0 / id: l-549620.0.r549620/11241 type: file count: 0 text: 549620 2533 240 223 821543eb97891e30c26808f8c629f440 e7bad25cef53aa101f2dcac49a5d5e95906283d4 549619-bs38/_m props: 300936 2259 98 0 8dda59e103a981389badbb35c2ee62ce cpath: /head/emulators/gngb/files/patch-src_message.c copyroot: 0 / id: n-549620.0.r549620/11531 type: file count: 0 text: 549620 2786 252 235 dd348ba5ce895763b9d9e8f7209ca68b 36f202a0f82b4d2c694618030a37009447f68528 549619-bs38/_o props: 300936 2259 98 0 8dda59e103a981389badbb35c2ee62ce cpath: /head/emulators/gngb/files/patch-src_message.h copyroot: 0 / id: p-549620.0.r549620/11821 type: file count: 0 text: 549620 3051 253 236 072dd1303a8e811ee3ebc24048c12315 76ae4baa03e875768bb178b41517358765d6a602 549619-bs38/_q props: 300936 2259 98 0 8dda59e103a981389badbb35c2ee62ce cpath: /head/emulators/gngb/files/patch-src_rom.c copyroot: 0 / id: r-549620.0.r549620/12107 type: file count: 0 text: 549620 3317 426 409 ce6426fa7e45804f5ceaf00c34de8a8e 66b2879109bcb482e9817db426afbc1f2e31c755 549619-bs38/_s props: 300936 2259 98 0 8dda59e103a981389badbb35c2ee62ce cpath: /head/emulators/gngb/files/patch-src_rom.h copyroot: 0 / id: t-549620.0.r549620/12393 type: file count: 0 text: 549620 3756 352 335 23cbc6607b18dbf07e2fac667b706b51 bba098d35c2db4613b3ea100d5e777849e32ed95 549619-bs38/_u props: 300936 2259 98 0 8dda59e103a981389badbb35c2ee62ce cpath: /head/emulators/gngb/files/patch-src_serial.c copyroot: 0 / id: v-549620.0.r549620/12682 type: file count: 0 text: 549620 4121 526 509 b09dc0ec3cf7ba27e7969f213eb25769 d62b6e7a76ef6f76ccdfe2ba1716cdba7966da43 549619-bs38/_w props: 300936 2259 98 0 8dda59e103a981389badbb35c2ee62ce cpath: /head/emulators/gngb/files/patch-src_serial.h copyroot: 0 / id: x-549620.0.r549620/12971 type: file count: 0 text: 549620 4660 439 422 9ed9f119a2ea0b478efd44d38ff23288 294557f26b0c35872d5f2dae5119d09d282083e0 549619-bs38/_y props: 300936 2259 98 0 8dda59e103a981389badbb35c2ee62ce cpath: /head/emulators/gngb/files/patch-src_sgb.c copyroot: 0 / id: z-549620.0.r549620/13257 type: file count: 0 text: 549620 5112 481 464 8bcfda12aa7ab327568396df6df2ee3b 2c3bc93db34c91f90b760f54988046f480a7ded4 549619-bs38/_10 props: 300936 2259 98 0 8dda59e103a981389badbb35c2ee62ce cpath: /head/emulators/gngb/files/patch-src_sgb.h copyroot: 0 / id: 11-549620.0.r549620/13544 type: file count: 0 text: 549620 5606 421 404 3fa445ccfa4f4070900d2116ad957dcd 997fca5a90ac653b8c005502075a73c5ef197276 549619-bs38/_12 props: 300936 2259 98 0 8dda59e103a981389badbb35c2ee62ce cpath: /head/emulators/gngb/files/patch-src_sound.c copyroot: 0 / id: 13-549620.0.r549620/13834 type: file count: 0 text: 549620 6040 421 1167 9f6bf5c48d347756869e18ce2d5c9997 33683e8b1d7479efa2845e7d198d9ff8d8c7ccca 549619-bs38/_14 props: 300936 2259 98 0 8dda59e103a981389badbb35c2ee62ce cpath: /head/emulators/gngb/files/patch-src_sound.h copyroot: 0 / id: 15-549620.0.r549620/14125 type: file count: 0 text: 549620 6474 403 386 a0d035afd6a57053cd60c3163f83eb75 d5ebf528303a2a1dc90da7e8ef2f4a591ca8309f 549619-bs38/_16 props: 300936 2259 98 0 8dda59e103a981389badbb35c2ee62ce cpath: /head/emulators/gngb/files/patch-src_video__std.c copyroot: 0 / id: 17-549620.0.r549620/14420 type: file count: 0 text: 549620 6890 353 336 5b07ed925234fe6538cc566ceeaf6365 e2f362feac368d6b5d3ad0884b0ab701218556bc 549619-bs38/_18 props: 300936 2259 98 0 8dda59e103a981389badbb35c2ee62ce cpath: /head/emulators/gngb/files/patch-src_video__std.h copyroot: 0 / id: 19-549620.0.r549620/14715 type: file count: 0 text: 549620 7256 252 235 be19f329592ce70e952ddbf107d431bd fc4346af8205c436692ad2b41cbe5ef75dd9d244 549619-bs38/_1a props: 300936 2259 98 0 8dda59e103a981389badbb35c2ee62ce cpath: /head/emulators/gngb/files/patch-src_video__yuv.c copyroot: 0 / id: 1b-549620.0.r549620/15010 type: file count: 0 text: 549620 7521 487 470 50d5c12f6367c15e4308cfea4b711f0d 5cb110d65a6b59afeabb0f933b309fe1fbbb4e2b 549619-bs38/_1c props: 300936 2259 98 0 8dda59e103a981389badbb35c2ee62ce cpath: /head/emulators/gngb/files/patch-src_video__yuv.h copyroot: 0 / id: 1d-549620.0.r549620/15305 type: file count: 0 text: 549620 8021 199 182 33bd7077f0813e6a7c59640857634aa2 afae298110fae82729e94502a543c73a5b569a0c 549619-bs38/_1e props: 300936 2259 98 0 8dda59e103a981389badbb35c2ee62ce cpath: /head/emulators/gngb/files/patch-src_vram.c copyroot: 0 / id: 1f-549620.0.r549620/15594 type: file count: 0 text: 549620 8233 308 538 bca99b37d3e4808c1f2e959575942f37 079ca1e72cd57693b97e8329f785b3b2447b78eb 549619-bs38/_1g props: 300936 2259 98 0 8dda59e103a981389badbb35c2ee62ce cpath: /head/emulators/gngb/files/patch-src_vram.h copyroot: 0 / PLAIN K 15 patch-src_emu.c V 28 file 5-549620.0.r549620/8851 K 15 patch-src_emu.h V 28 file 8-549620.0.r549620/9134 K 21 patch-src_interrupt.c V 28 file a-549620.0.r549620/9418 K 21 patch-src_interrupt.h V 28 file c-549620.0.r549620/9708 K 16 patch-src_main.c V 28 file e-549620.0.r549620/9998 K 18 patch-src_memory.c V 36 file 6-172823.0-425482.r549620/10284 K 16 patch-src_menu.c V 29 file h-549620.0.r549620/10667 K 16 patch-src_menu.h V 29 file j-549620.0.r549620/10954 K 19 patch-src_message.c V 29 file l-549620.0.r549620/11241 K 19 patch-src_message.h V 29 file n-549620.0.r549620/11531 K 15 patch-src_rom.c V 29 file p-549620.0.r549620/11821 K 15 patch-src_rom.h V 29 file r-549620.0.r549620/12107 K 16 patch-src_save.c V 35 file 5-116295.1-425482.r425482/1374 K 18 patch-src_serial.c V 29 file t-549620.0.r549620/12393 K 18 patch-src_serial.h V 29 file v-549620.0.r549620/12682 K 15 patch-src_sgb.c V 29 file x-549620.0.r549620/12971 K 15 patch-src_sgb.h V 29 file z-549620.0.r549620/13257 K 17 patch-src_sound.c V 30 file 11-549620.0.r549620/13544 K 17 patch-src_sound.h V 30 file 13-549620.0.r549620/13834 K 22 patch-src_video__std.c V 30 file 15-549620.0.r549620/14125 K 22 patch-src_video__std.h V 30 file 17-549620.0.r549620/14420 K 22 patch-src_video__yuv.c V 30 file 19-549620.0.r549620/14715 K 22 patch-src_video__yuv.h V 30 file 1b-549620.0.r549620/15010 K 16 patch-src_vram.c V 30 file 1d-549620.0.r549620/15305 K 16 patch-src_vram.h V 30 file 1f-549620.0.r549620/15594 END ENDREP id: 3-116295.0.r549620/17383 type: dir pred: 3-116295.0.r425482/1886 count: 5 text: 549620 15883 1487 0 12c67449b5a29a18edcad2dae374c1da cpath: /head/emulators/gngb/files copyroot: 0 / PLAIN K 8 Makefile V 27 file 5-41784.0.r549620/8554 K 8 distinfo V 30 file 8-41784.0.r340717/4825941 K 5 files V 28 dir 3-116295.0.r549620/17383 K 9 pkg-descr V 30 file g-41784.0.r340718/5171062 END ENDREP id: 4-41784.0.r549620/17775 type: dir pred: 4-41784.0.r517045/38445 count: 45 text: 549620 17569 193 0 7762a6e1c0c59e0f3dc80d40e70a328c cpath: /head/emulators/gngb copyroot: 0 / PLAIN K 8 Makefile V 28 file 2-1901.0.r548980/548066 K 6 adamem V 28 dir 4-56933.0.r536693/422112 K 11 advancemame V 26 dir 4-185890.0.r546375/568 K 11 advancemenu V 28 dir 4-185893.0.r517045/29976 K 11 advancemess V 28 dir e-185890.0.r517045/30643 K 8 almostti V 26 dir 4-439436.0.r546700/548 K 5 anese V 26 dir 4-510735.0.r510749/565 K 5 aqemu V 30 dir 2-219775.0.r507372/1740549 K 8 atari800 V 27 dir 2-8387.0.r517560/490251 K 3 bfe V 26 dir 2-25419.0.r491824/1076 K 5 bochs V 27 dir 2-9124.0.r517560/490985 K 4 bsvc V 24 dir 2-5848.0.r517268/558 K 10 cannonball V 29 dir 4-506026.0.r519824/811145 K 4 cinc V 28 dir 4-61615.0.r547044/536737 K 5 cingb V 27 dir 4-41779.0.r516802/39513 K 5 citra V 27 dir 4-423700.0.r549541/1110 K 9 citra-qt5 V 27 dir c-423700.0.r546963/1820 K 6 cpmemu V 28 dir 2-1898.0.r386312/1068257 K 8 cpmtools V 24 dir 2-639.0.r546772/1114 K 9 cpmtools2 V 27 dir 4-215562.0.r549477/1497 K 7 darcnes V 28 dir 4-41785.0.r517008/480556 K 8 dgen-sdl V 27 dir 4-32900.0.r517045/32774 K 11 dolphin-emu V 36 dir 4-282862.0-330484.r542069/452722 K 6 dosbox V 26 dir 4-79969.0.r529043/1562 K 14 dosbox-staging V 33 dir 4-79969.0-545581.r546059/1237 K 7 dtcyber V 29 dir 4-173209.0.r547044/537435 K 18 dynamips-community V 29 dir 4-273124.0.r488341/974910 K 5 e-uae V 29 dir 4-129200.0.r547044/538134 K 9 edumips64 V 27 dir 4-500854.0.r531827/1331 K 11 elliott-803 V 34 dir 2-540929.0-540941.r541324/1175 K 5 emu64 V 27 dir 4-529184.0.r532092/1697 K 16 emulationstation V 29 dir 4-491326.0.r519824/813109 K 5 fceux V 28 dir m-85227.0.r536497/499854 K 4 fmsx V 26 dir 2-5767.0.r516802/42402 K 5 frodo V 26 dir 2-9873.0.r517045/35643 K 6 fs-uae V 26 dir 4-347825.0.r538163/599 K 15 fs-uae-launcher V 29 dir 4-372150.0.r531396/541537 K 4 fuse V 28 dir 4-92575.0.r517560/491670 K 9 fuse-roms V 26 dir 5-333630.0.r476369/525 K 10 fuse-utils V 28 dir 4-231401.0.r517045/37007 K 3 gbe V 27 dir 4-41461.0.r516802/44492 K 4 gem5 V 29 dir 4-384601.0.r539491/575009 K 4 gens V 28 dir 4-138544.0.r517045/37756 K 4 gngb V 27 dir 4-41784.0.r549620/17775 K 5 gngeo V 28 dir 4-149037.0.r517045/39184 K 6 gxemul V 29 dir 4-135684.0.r516140/428907 K 6 hatari V 28 dir 4-104148.0.r516802/46711 K 8 hercules V 27 dir 4-59974.0.r508837/60624 K 5 higan V 34 dir 4-238545.0-312766.r525644/2365 K 4 hugo V 27 dir 4-163616.0.r547247/3958 K 9 i386-wine V 36 dir 4-315245.0-324613.r539770/386187 K 15 i386-wine-devel V 29 dir 4-315245.0.r539770/387094 K 4 ines V 26 dir 2-4493.0.r516802/48258 K 8 javatari V 26 dir 4-317067.0.r519846/567 K 7 joytran V 26 dir 4-283445.0.r547311/817 K 6 jzintv V 27 dir 4-210659.0.r548670/6598 K 5 kcemu V 28 dir 4-287922.0.r516802/49704 K 5 klh10 V 27 dir 4-73485.0.r508837/66279 K 6 lib765 V 29 dir 4-92571.0.r412346/3795088 K 6 libdsk V 27 dir 4-207299.0.r477950/2175 K 15 libretro-ppsspp V 27 dir 4-540656.0.r540656/2050 K 11 libspectrum V 27 dir 4-92573.0.r517045/42187 K 8 linux-c7 V 38 dir a2-368845.26-424259.r512486/472106 K 27 linux-power9-functional-sim V 29 dir 4-483454.0.r503726/543398 K 13 linux_base-c7 V 34 dir 4-157591.0-421391.r534102/2903 K 6 lisaem V 30 dir 4-195326.0.r507372/1748889 K 4 mame V 27 dir 4-185897.0.r544568/7500 K 10 mastergear V 26 dir 2-4492.0.r516802/51137 K 8 mednafen V 26 dir 4-165093.0.r546260/633 K 5 mesen V 28 dir 2-505721.0.r517045/43677 K 4 mess V 27 dir 4-185900.0.r544568/8151 K 4 mgba V 27 dir 4-451322.0.r538596/3448 K 6 mtools V 25 dir 3-181.0.r516802/52610 K 11 mupen64plus V 28 dir 4-213424.0.r508837/73174 K 21 mupen64plus-audio-sdl V 27 dir 4-213418.0.r389666/3846 K 16 mupen64plus-core V 27 dir m-213402.0.r546737/1739 K 21 mupen64plus-input-sdl V 26 dir 4-213420.0.r502559/423 K 19 mupen64plus-plugins V 30 dir 4-287769.0.r412346/3803662 K 14 mupen64plus-qt V 27 dir 4-443667.0.r534223/1073 K 20 mupen64plus-rsp-cxd4 V 30 dir 2-389665.0.r507372/1752458 K 19 mupen64plus-rsp-hle V 27 dir 8-213415.0.r364872/5264 K 19 mupen64plus-rsp-z64 V 30 dir 4-287765.0.r412346/3804931 K 22 mupen64plus-ui-console V 27 dir 2-266186.0.r389666/8653 K 27 mupen64plus-video-arachnoid V 28 dir 4-287766.0.r516802/54712 K 25 mupen64plus-video-glide64 V 28 dir 4-287767.0.r517045/45856 K 28 mupen64plus-video-glide64mk2 V 36 dir 4-287767.0-329345.r519824/813819 K 22 mupen64plus-video-rice V 28 dir c-213413.0.r516802/56768 K 21 mupen64plus-video-z64 V 28 dir 4-287768.0.r517045/47271 K 4 nemu V 27 dir 4-522033.0.r531664/1413 K 8 nestopia V 29 dir 4-406633.0.r529327/465673 K 9 nonpareil V 29 dir 4-168901.0.r536497/501338 K 4 o2em V 28 dir 4-138301.0.r508837/73979 K 10 ods2reader V 27 dir 4-154383.0.r536043/1341 K 13 open-vm-tools V 27 dir 2-210012.0.r548202/2383 K 19 open-vm-tools-nox11 V 28 dir 2-213113.0.r436703/10398 K 7 openmsx V 34 dir 4-154507.0-533890.r533890/2422 K 12 p5-Acme-6502 V 29 dir 4-300440.0.r474242/706533 K 15 parallels-tools V 27 dir 4-235803.0.r500851/1807 K 4 pcem V 29 dir 4-500881.0.r535516/551584 K 5 pcemu V 26 dir 2-1211.0.r516802/58193 K 5 pcsxr V 28 dir 4-259739.0.r547983/13608 K 9 playonbsd V 29 dir 4-409105.0.r535516/552333 K 6 ppsspp V 26 dir 4-387239.0.r548929/609 K 10 ppsspp-qt5 V 27 dir b-422825.0.r540656/3988 K 17 py-gns3-converter V 30 dir 4-392943.0.r455210/1613804 K 10 py-unicorn V 27 dir 4-428964.0.r538723/2087 K 4 qemu V 27 dir 4-110715.0.r547301/1638 K 10 qemu-cheri V 26 dir 4-407321.0.r540986/800 K 10 qemu-devel V 28 dir 12-110715.0.r548428/5908 K 12 qemu-powernv V 34 dir 4-446697.0-486085.r531653/1238 K 11 qemu-sbruno V 26 dir 4-375864.0.r533403/652 K 16 qemu-user-static V 34 dir 4-375864.0-533075.r548669/1750 K 22 qemu-user-static-devel V 34 dir 4-375864.0-518822.r548669/3360 K 10 qemu-utils V 26 dir 6-423989.0.r543438/575 K 6 qemu31 V 36 dir 4-110715.0-518393.r535391/421920 K 6 qemu41 V 34 dir 4-110715.0-541864.r541864/3167 K 6 qemu50 V 28 dir 4-542535.0.r542535/13678 K 4 qmc2 V 27 dir 4-186179.0.r540059/1415 K 7 quasi88 V 27 dir 2-19253.0.r517045/53242 K 11 riscv-fesvr V 27 dir 4-433560.0.r481272/1172 K 13 riscv-isa-sim V 30 dir e-433560.0.r507372/1756908 K 5 rpcs3 V 27 dir 4-443906.0.r549538/1230 K 3 rtc V 25 dir 2-27306.0.r548586/600 K 15 rubygem-fission V 26 dir 4-373948.0.r509685/591 K 4 simh V 26 dir j-8523.0.r547263/12716 K 11 simh-hp2100 V 27 dir 4-538699.0.r546863/1398 K 11 simh-hp3000 V 27 dir 4-538700.0.r546866/1759 K 10 simh-hpdoc V 26 dir 4-534055.0.r534067/618 K 6 skyeye V 26 dir 4-140313.0.r541195/568 K 10 snes9x-gtk V 28 dir 4-248720.0.r517045/53936 K 4 spim V 27 dir 2-4193.0.r517008/483039 K 6 stella V 25 dir 2-7447.0.r541047/1439 K 5 stonx V 26 dir 2-8422.0.r516802/64141 K 3 teo V 28 dir 4-492411.0.r516802/64871 K 6 tiemu3 V 28 dir 4-199151.0.r517045/55368 K 5 tilem V 28 dir 4-172324.0.r517045/56070 K 3 tme V 28 dir 4-180383.0.r517045/56817 K 12 tpm-emulator V 27 dir 4-264184.0.r545265/1845 K 6 tuxnes V 27 dir 2-25743.0.r516802/65560 K 3 uae V 27 dir 2-32335.0.r517045/57512 K 6 ucon64 V 27 dir 4-322700.0.r503742/3237 K 7 ukncbtl V 26 dir 4-520616.0.r520816/515 K 7 unicorn V 27 dir 4-428645.0.r538723/4146 K 3 vba V 27 dir 4-90118.0.r517045/58245 K 8 vboxtool V 29 dir 4-300839.0.r490472/872192 K 7 vgb-bin V 27 dir 4-31506.0.r516802/66210 K 8 vgba-bin V 27 dir g-31506.0.r516802/66865 K 4 vice V 25 dir 2-11843.0.r543240/640 K 14 virtualbox-ose V 28 dir q-235883.0.r549433/12634 K 24 virtualbox-ose-additions V 28 dir 4-247789.0.r544898/12413 K 30 virtualbox-ose-additions-nox11 V 27 dir 4-423312.0.r501807/4077 K 19 virtualbox-ose-kmod V 27 dir 1c-235883.0.r545087/633 K 20 virtualbox-ose-nox11 V 34 dir 6-418067.0-423381.r514643/4753 K 18 visualboyadvance-m V 27 dir 4-261237.0.r546257/1172 K 5 vmips V 29 dir 4-114834.0.r484628/699520 K 9 vmsbackup V 24 dir 2-1463.0.r453625/556 K 3 vmw V 26 dir 4-177727.0.r536186/594 K 4 vpcs V 30 dir 4-401895.0.r415498/1207275 K 7 vxtools V 26 dir 2-31088.0.r348220/3244 K 4 wine V 24 dir 2-898.0.r544494/1055 K 10 wine-devel V 24 dir 7-898.0.r548471/1796 K 10 wine-gecko V 27 dir 4-274146.0.r524678/4921 K 16 wine-gecko-devel V 27 dir e-274146.0.r520892/3210 K 9 wine-mono V 26 dir 4-302265.0.r534247/532 K 15 wine-mono-devel V 34 dir 4-302265.0-338526.r539428/1910 K 10 winetricks V 27 dir 4-425599.0.r529210/1218 K 12 x16-emulator V 27 dir 4-529251.0.r546337/1358 K 7 x16-rom V 27 dir i-529251.0.r546337/2307 K 3 x48 V 26 dir 2-4147.0.r516802/70729 K 5 x49gp V 28 dir 4-339966.0.r516802/71524 K 12 xbraitenberg V 28 dir 4-105484.0.r516802/72224 K 4 xcpc V 28 dir 4-213997.0.r516802/72930 K 10 xen-kernel V 34 dir 2-475255.0-494040.r546327/4075 K 6 xhomer V 28 dir 4-168003.0.r516802/73626 K 9 xsystem35 V 27 dir 2-14623.0.r516802/74367 K 3 xzx V 26 dir 2-8599.0.r516802/75050 K 4 yuzu V 34 dir 4-423700.0-505393.r549540/1237 K 8 yuzu-qt5 V 34 dir c-423700.1-505393.r548271/2102 K 5 zsnes V 26 dir 4-42775.0.r546767/1436 END ENDREP id: 1-181.0.r549620/26697 type: dir pred: 1-181.0.r549541/10032 count: 8509 text: 549620 17954 8730 0 8af38a62e78d58a897ea771fb3c5e528 cpath: /head/emulators copyroot: 0 / PLAIN K 10 .arcconfig V 26 file 1-354154.0.r422906/41 K 14 .gitattributes V 26 file 1-411777.0.r467740/54 K 11 .gitauthors V 27 file 1-467739.0.r547190/454 K 10 .gitignore V 26 file 1-348322.0.r458023/77 K 11 .gitmessage V 27 file 3-457790.0.r457790/987 K 7 CHANGES V 26 file 1-99373.0.r537134/686 K 15 CONTRIBUTING.md V 27 file 1-348323.0.r348323/344 K 9 COPYRIGHT V 26 file 1-146787.0.r521639/51 K 4 GIDs V 28 file 1-168311.0.r548087/4245 K 8 Keywords V 27 dir 1-314142.0.r535225/1330 K 5 LEGAL V 25 file 1-748.0.r546333/2239 K 5 MOVED V 27 file 1-69878.0.r549436/1829 K 8 Makefile V 23 file 1-6.0.r516635/2409 K 2 Mk V 22 dir 1-5.0.r549560/1916 K 6 README V 25 file 1-2408.0.r494236/641 K 9 Templates V 24 dir 1-2932.0.r544150/817 K 5 Tools V 26 dir 3-15302.0.r545812/3025 K 4 UIDs V 28 file 4-168311.0.r548087/4527 K 8 UPDATING V 28 file 1-102685.0.r548882/4823 K 13 accessibility V 26 dir 1-42583.0.r548825/2068 K 6 arabic V 27 dir 1-38973.0.r547518/51393 K 9 archivers V 25 dir 1-242.0.r549126/13152 K 5 astro V 25 dir 1-301.0.r549108/19336 K 5 audio V 25 dir 1-148.0.r549610/45108 K 4 base V 27 dir 1-420954.0.r542956/1557 K 10 benchmarks V 23 dir 1-62.0.r549437/5474 K 7 biology V 26 dir 1-9066.0.r549546/10632 K 3 cad V 24 dir 1-276.0.r549614/9045 K 7 chinese V 25 dir 1-3770.0.r549619/7274 K 5 comms V 24 dir 1-76.0.r549449/40692 K 10 converters V 26 dir 1-1561.0.r549483/11925 K 9 databases V 25 dir 1-771.0.r549612/57864 K 9 deskutils V 26 dir 1-2098.0.r549573/13931 K 5 devel V 25 dir 1-73.0.r549617/375615 K 3 dns V 27 dir 1-6145.0.r548980/534280 K 7 editors V 23 dir 4-6.0.r549585/15898 K 9 emulators V 25 dir 1-181.0.r549620/26697 K 7 finance V 25 dir 1-4110.0.r548382/7803 K 6 french V 27 dir 1-25673.0.r547883/10443 K 3 ftp V 24 dir 1-199.0.r549609/6962 K 5 games V 25 dir 1-104.0.r549576/58568 K 6 german V 25 dir 1-7451.0.r549021/2339 K 8 graphics V 24 dir 1-94.0.r549607/57153 K 6 hebrew V 28 dir 3-31142.0.r547518/142441 K 9 hungarian V 29 dir 1p-38973.0.r547518/143712 K 3 irc V 23 dir 1-42.0.r548165/7171 K 8 japanese V 25 dir 1-410.0.r549557/16955 K 4 java V 27 dir 1-2798.0.r548980/691089 K 6 korean V 27 dir 1-5873.0.r547518/161659 K 4 lang V 24 dir 1-15.0.r549608/18224 K 4 mail V 24 dir 1-57.0.r549602/39104 K 4 math V 25 dir 1-162.0.r549618/54846 K 4 misc V 24 dir 7-35.0.r549615/39010 K 10 multimedia V 25 dir d-333.0.r549529/25294 K 3 net V 24 dir 1-22.0.r549600/84391 K 6 net-im V 28 dir 15-11144.0.r549604/16681 K 8 net-mgmt V 26 dir r-1011.0.r549115/22563 K 7 net-p2p V 26 dir g-29106.0.r549463/6460 K 4 news V 26 dir 1-145.0.r548980/969664 K 6 polish V 27 dir tv-38973.0.r549022/1962 K 10 ports-mgmt V 25 dir 1-5132.0.r549599/4723 K 10 portuguese V 28 dir 1-17842.0.r547518/165236 K 5 print V 24 dir 1-79.0.r549571/17747 K 7 russian V 26 dir 1-1559.0.r547883/31018 K 7 science V 26 dir n-5356.0.r549616/18021 K 8 security V 26 dir 1-269.0.r549611/101749 K 6 shells V 25 dir w-6.0.r548980/1075816 K 8 sysutils V 25 dir b-339.0.r549592/84844 K 8 textproc V 26 dir 1-322.0.r549594/102008 K 9 ukrainian V 28 dir g-39704.0.r547518/271763 K 10 vietnamese V 27 dir 1-4812.0.r547518/273462 K 3 www V 26 dir 1-114.0.r549586/134678 K 3 x11 V 24 dir 1-16.0.r549554/27239 K 10 x11-clocks V 24 dir 1-931.0.r548677/4190 K 11 x11-drivers V 30 dir 1-157567.0.r548980/1391041 K 6 x11-fm V 27 dir 1-691.0.r548980/1393003 K 9 x11-fonts V 25 dir 1-543.0.r549495/14240 K 11 x11-servers V 25 dir 1n-710.0.r549542/1883 K 10 x11-themes V 29 dir 1-14410.0.r548634/1116369 K 12 x11-toolkits V 25 dir 1-120.0.r549413/15594 K 6 x11-wm V 26 dir 1-40.0.r548980/1399036 END ENDREP id: 2-1.0.r549620/30456 type: dir pred: 2-1.0.r549619/11031 count: 539753 text: 549620 26870 3573 0 8502a120f27b99ab8d0e0d3acb8f39f4 props: 458023 3927 157 0 4d85142843815bcc29c89469bccb873c cpath: /head copyroot: 0 / PLAIN K 8 branches V 23 dir 0-1.0.r549552/55743 K 4 head V 23 dir 2-1.0.r549620/30456 K 8 projects V 24 dir 0-377393.0.r441387/0 K 8 svnadmin V 22 dir 3-1.0.r547933/1283 K 4 tags V 22 dir 8-1.0.r536699/5595 END ENDREP id: 0.0.r549620/30893 type: dir pred: 0.0.r549619/11467 count: 549620 text: 549620 30675 205 0 734545c26dcebc7a81e9d77419706a95 props: 341041 7130 346 0 8b695b9f61597e4917effffba3bbfaa3 cpath: / copyroot: 0 / minfo-cnt: 59 5-41784.0.t549619-bs38 modify-file true false /head/emulators/gngb/Makefile _5.0.t549619-bs38 add-file true true /head/emulators/gngb/files/patch-src_emu.c _8.0.t549619-bs38 add-file true true /head/emulators/gngb/files/patch-src_emu.h _a.0.t549619-bs38 add-file true true /head/emulators/gngb/files/patch-src_interrupt.c _c.0.t549619-bs38 add-file true true /head/emulators/gngb/files/patch-src_interrupt.h _e.0.t549619-bs38 add-file true true /head/emulators/gngb/files/patch-src_main.c 6-172823.0-425482.t549619-bs38 modify-file true false /head/emulators/gngb/files/patch-src_memory.c _h.0.t549619-bs38 add-file true true /head/emulators/gngb/files/patch-src_menu.c _j.0.t549619-bs38 add-file true true /head/emulators/gngb/files/patch-src_menu.h _l.0.t549619-bs38 add-file true true /head/emulators/gngb/files/patch-src_message.c _n.0.t549619-bs38 add-file true true /head/emulators/gngb/files/patch-src_message.h _p.0.t549619-bs38 add-file true true /head/emulators/gngb/files/patch-src_rom.c _r.0.t549619-bs38 add-file true true /head/emulators/gngb/files/patch-src_rom.h _t.0.t549619-bs38 add-file true true /head/emulators/gngb/files/patch-src_serial.c _v.0.t549619-bs38 add-file true true /head/emulators/gngb/files/patch-src_serial.h _x.0.t549619-bs38 add-file true true /head/emulators/gngb/files/patch-src_sgb.c _z.0.t549619-bs38 add-file true true /head/emulators/gngb/files/patch-src_sgb.h _11.0.t549619-bs38 add-file true true /head/emulators/gngb/files/patch-src_sound.c _13.0.t549619-bs38 add-file true true /head/emulators/gngb/files/patch-src_sound.h _15.0.t549619-bs38 add-file true true /head/emulators/gngb/files/patch-src_video__std.c _17.0.t549619-bs38 add-file true true /head/emulators/gngb/files/patch-src_video__std.h _19.0.t549619-bs38 add-file true true /head/emulators/gngb/files/patch-src_video__yuv.c _1b.0.t549619-bs38 add-file true true /head/emulators/gngb/files/patch-src_video__yuv.h _1d.0.t549619-bs38 add-file true true /head/emulators/gngb/files/patch-src_vram.c _1f.0.t549619-bs38 add-file true true /head/emulators/gngb/files/patch-src_vram.h 30893 31117